* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.snow {
    position: absolute;
    top: -50px;
    color: white;
    font-size: clamp(14px, 4vw, 20px);
    animation: snowFall 8s linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
}

@keyframes snowFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.2; }
    100% {
        transform: translateY(100vh) translateX(0) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

header {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 235, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #6a42c9, #8b5ceb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(139, 92, 235, 0.3);
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #8b5ceb;
    background: rgba(139, 92, 235, 0.1);
    transform: translateY(-1px);
}

.auth-btn {
    background: rgba(139, 92, 235, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 235, 0.4);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    height: 40px;
    gap: 0.5rem;
}

.auth-btn:hover {
    background: rgba(139, 92, 235, 0.3);
    border-color: rgba(139, 92, 235, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 235, 0.3);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.default-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a42c9, #8b5ceb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

main {
    margin: 0;
    padding: 0;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.brand-name {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: #8b5ceb;
    margin-bottom: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.presenting {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: #ccc;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8b5ceb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(139, 92, 235, 0.2);
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.9;
    padding: 0 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.glass-btn {
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 3vw, 1rem);
    min-width: min(180px, 100%);
    height: 48px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.glass-btn.primary {
    background: rgba(139, 92, 235, 0.2);
    border: 1px solid rgba(139, 92, 235, 0.4);
}

.glass-btn.primary:hover {
    background: rgba(139, 92, 235, 0.3);
    border-color: rgba(139, 92, 235, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 235, 0.3);
}

.glass-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.glass-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: rgba(25, 25, 35, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 235, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: bold;
    color: #8b5ceb;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(139, 92, 235, 0.3);
}

.stat-label {
    color: #ccc;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    opacity: 0.8;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: #8b5ceb;
    text-shadow: 0 2px 10px rgba(139, 92, 235, 0.2);
    padding: 0 1rem;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.about-card {
    background: rgba(25, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 235, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(139, 92, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 235, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.animated-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    border-color: rgba(139, 92, 235, 0.6);
    box-shadow: 0 0 20px rgba(139, 92, 235, 0.4);
}

.about-card:hover .animated-icon {
    transform: scale(1.2);
}

/* Анимация для иконок */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    animation: float 3s ease-in-out infinite;
}

.about-card:hover .card-icon {
    animation: none;
}

.card-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #8b5ceb;
    margin-bottom: 1rem;
    font-weight: bold;
}

.card-content {
    color: #ccc;
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1rem);
    text-decoration: none;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.feature-item {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 235, 0.1);
    position: relative;
    padding-left: 0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    display: none;
}

.profile-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.profile-container {
    background: rgba(25, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 235, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 92, 235, 0.2);
}

.user-avatar.large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(139, 92, 235, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.default-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a42c9, #8b5ceb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    color: #8b5ceb;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.username {
    color: #8b5ceb;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.user-id {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(139, 92, 235, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(139, 92, 235, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 235, 0.5);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #8b5ceb;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0.8;
}

.profile-content {
    margin-top: 2rem;
}

.profile-section-inner {
    margin-bottom: 3rem;
}

.profile-section-inner h3 {
    color: #8b5ceb;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 235, 0.2);
    padding-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 235, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 235, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 235, 0.2);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.product-price {
    color: #8b5ceb;
    font-size: 1.1rem;
    font-weight: bold;
    margin-left: 1rem;
}

.product-info {
    margin-bottom: 1.5rem;
}

.product-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.product-status.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.product-status.blocked {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.product-status.processing {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.product-downloads {
    color: #888;
    font-size: 0.8rem;
}

.license-info {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.license-label {
    color: #8b5ceb;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.license-key {
    color: #ccc;
    font-size: 0.75rem;
    font-family: monospace;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: block;
}

.product-actions {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.product-download {
    width: 100%;
}

.blocked-info {
    color: #f44336;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item.large {
    background: rgba(139, 92, 235, 0.1);
    border: 1px solid rgba(139, 92, 235, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item.large:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 235, 0.5);
}

.stat-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b5ceb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
}

.products-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(25, 25, 35, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 235, 0.3);
}

.products-summary h4 {
    color: #8b5ceb;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card.active {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.summary-card.blocked {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.summary-card.pending {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.summary-count {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.summary-card.active .summary-count {
    color: #4caf50;
}

.summary-card.blocked .summary-count {
    color: #f44336;
}

.summary-card.pending .summary-count {
    color: #ff9800;
}

.summary-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-percentage {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b5ceb;
}

.no-data {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 235, 0.2);
}

.no-data p {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    background: rgba(25, 25, 35, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 235, 0.3);
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 92, 235, 0.3);
    border-top: 3px solid #8b5ceb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    color: white;
    font-size: 1rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(25, 25, 35, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.notification.success {
    border-color: rgba(76, 175, 80, 0.5);
}

.notification.error {
    border-color: rgba(244, 67, 54, 0.5);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    color: white;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

footer {
    background: rgba(10, 10, 10, 0.95);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 92, 235, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    text-align: center;
    order: 1;
}

.footer-brand h3 {
    color: #8b5ceb;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-nav {
    order: 2;
    text-align: center;
}

.footer-nav h4 {
    color: #8b5ceb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav li {
    margin-bottom: 0;
    list-style: none;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.footer-nav a:hover {
    color: #8b5ceb;
    background: rgba(139, 92, 235, 0.1);
}

/* Стили для правовых страниц */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(25, 25, 35, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 235, 0.3);
    backdrop-filter: blur(10px);
}

.legal-page h1 {
    color: #8b5ceb;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.2rem;
}

.legal-page h2 {
    color: #8b5ceb;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 235, 0.2);
    padding-bottom: 0.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #ccc;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 0;
    text-decoration: none;
    list-style: none;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #ccc;
    line-height: 1.6;
    position: relative;
    text-decoration: none;
    padding-left: 0;
}

.legal-page li::before {
    display: none;
}

.legal-page strong {
    color: #8b5ceb;
}


.footer-contacts-main {
    order: 3;
    text-align: center;
}

.footer-contacts-main h4 {
    color: #8b5ceb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 235, 0.2);
    max-width: 300px;
    width: 100%;
}

.contact-link:hover {
    background: rgba(139, 92, 235, 0.15);
    border-color: rgba(139, 92, 235, 0.4);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 92, 235, 0.1);
    border: 2px solid rgba(139, 92, 235, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.animated-contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    border-color: rgba(139, 92, 235, 0.6);
    box-shadow: 0 0 15px rgba(139, 92, 235, 0.4);
    background: rgba(139, 92, 235, 0.2);
}

.contact-link:hover .animated-contact-icon {
    transform: scale(1.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    background: none;
    border: none;
}

.animated-contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(139, 92, 235, 0.4);
    background: none;
}

.contact-link:hover .animated-contact-icon {
    transform: scale(1.2);
}

/* Анимация для контактных иконок */
.contact-icon {
    animation: float-contact 3s ease-in-out infinite;
}

@keyframes float-contact {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.contact-link:hover .contact-icon {
    animation: none;
}

/* Адаптивность для контактных иконок */
@media (max-width: 768px) {
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .animated-contact-icon {
        width: 35px;
        height: 35px;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-details strong {
    color: #8b5ceb;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-details span {
    color: #ccc;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 235, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    order: 4;
    margin-top: 2rem;
}

.footer-legal {
    color: #888;
    font-size: 0.9rem;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-policies a {
    color: #8b5ceb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-center {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .auth-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .user-avatar.large {
        width: 100px;
        height: 100px;
    }
    
    .default-avatar {
        font-size: 2.5rem;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item.large {
        padding: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .product-price {
        margin-left: 0;
    }
    
    .summary-cards {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-count {
        font-size: 1.5rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contacts-main {
        order: -1;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-links {
        order: 2;
    }
    
    .contact-links {
        align-items: center;
    }
    
    .contact-link {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-center {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .auth-btn {
        min-width: 180px;
        padding: 0.7rem 1.2rem;
    }
    
    .profile-section {
        padding: 1rem 0.5rem;
    }
    
    .profile-container {
        padding: 1.5rem 1rem;
    }
    
    .user-avatar.large {
        width: 80px;
        height: 80px;
    }
    
    .default-avatar {
        font-size: 2rem;
    }
    
    .profile-info h1 {
        font-size: 1.5rem;
    }
    
    .contact-link {
        padding: 0.8rem;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .header-top {
        width: auto;
        gap: 2rem;
    }
    
    .header-bottom {
        width: auto;
        justify-content: flex-end;
    }
    
    .nav-center {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-contacts-main {
        order: 0;
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    
    .footer-brand {
        order: 1;
        flex: 2;
        text-align: left;
    }
    
    .footer-links {
        order: 2;
        flex: 1;
        min-width: 150px;
        text-align: left;
    }
    
    .contact-links {
        align-items: flex-start;
    }
    
    .contact-link {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .header-content {
        gap: 3rem;
    }
    
    .nav-center {
        gap: 2rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .footer-contacts-main {
        flex: 1;
    }
    
    .footer-brand {
        flex: 2;
    }
    
    .footer-links {
        flex: 1;
    }
}

.dev-gif {
    margin-bottom: 1.5rem;
}

.construction-gif {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 235, 0.3);
}

.dev-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: rgba(139, 92, 235, 0.1);
    border: 1px solid rgba(139, 92, 235, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .construction-gif {
        width: 150px;
        height: 112px;
    }
    
    .dev-features {
        grid-template-columns: 1fr;
    }
}