* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    text-align: left;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -2px;
    position: relative;
    z-index: 1;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg) translateY(-2px);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 2;
}

.logo:hover h1 {
    color: #667eea;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 1.5px;
    margin-left: 6px;
    margin-top: -6px;
    cursor: default;
    user-select: none;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-icon {
    background: #f5f5f5;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-icon:hover {
    background: #667eea;
    transform: translateY(-3px) scale(1.05);
}

.badge,
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* Анимация корзины */
.cart-scale {
    animation: cartScale 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #c5563d, #b5306a, #1c85b0, #1baa8a, #5363c3, #5d3c82, #c975d4, #3d8dd0);
    background-size: 400% 400%;
    animation: euphoriaGradient 30s ease infinite;
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes euphoriaGradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 75%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 25%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 27px;
    opacity: 0;
    white-space: nowrap;
    display: inline-block;
    animation: typing 2s steps(60, end) 0.5s forwards;
    clip-path: inset(0 100% 0 0);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes typing {
    from { 
        opacity: 1;
        clip-path: inset(0 100% 0 0);
    }
    to { 
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.btn-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 1s backwards;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Ссылка на отзывы под кнопкой */
.reviews-link {
    display: block;
    margin-top: 18px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 2.8s backwards;
    letter-spacing: 0.3px;
}

.reviews-link:hover {
    color: #e0e0e0;
    text-decoration-thickness: 2px;
}

/* Catalog Hero - Psychedelic Effect */
.catalog-hero {
    background: #1a0033;
    padding: 20px 0 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 284px;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 100, 255, 0.8) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(100, 200, 255, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 50, 180, 0.6) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(150, 255, 200, 0.5) 0%, transparent 30%);
    animation: lightLeaks 25s ease infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
    filter: blur(60px);
}

.catalog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 180px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(circle 150px at 80% 70%, rgba(255, 200, 255, 0.35), transparent),
        radial-gradient(circle 200px at 50% 50%, rgba(200, 255, 255, 0.3), transparent),
        radial-gradient(circle 140px at 70% 20%, rgba(255, 255, 200, 0.25), transparent),
        radial-gradient(circle 160px at 30% 80%, rgba(255, 150, 255, 0.3), transparent),
        radial-gradient(circle 100px at 90% 40%, rgba(150, 255, 255, 0.35), transparent),
        radial-gradient(circle 120px at 10% 60%, rgba(255, 180, 255, 0.3), transparent);
    animation: circles 20s ease infinite;
    pointer-events: none;
    z-index: 3;
    filter: blur(40px);
}

@keyframes lightLeaks {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20%, -15%) rotate(90deg) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-15%, 20%) rotate(180deg) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translate(15%, 10%) rotate(270deg) scale(1.05);
        opacity: 0.85;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes circles {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: translate(60px, -40px) scale(1.3) rotate(72deg);
        opacity: 0.6;
    }
    40% {
        transform: translate(-50px, 60px) scale(0.85) rotate(144deg);
        opacity: 0.9;
    }
    60% {
        transform: translate(45px, 30px) scale(1.15) rotate(216deg);
        opacity: 0.7;
    }
    80% {
        transform: translate(-40px, -35px) scale(0.95) rotate(288deg);
        opacity: 0.85;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 1;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.particle:nth-child(1) { 
    width: 600px; 
    height: 600px; 
    top: -20%; 
    left: -10%; 
    background: radial-gradient(circle, rgba(199, 117, 212, 0.6) 0%, transparent 70%);
    animation: psychedelic1 30s ease infinite;
}

.particle:nth-child(2) { 
    width: 500px; 
    height: 500px; 
    top: 50%; 
    left: 60%; 
    background: radial-gradient(circle, rgba(74, 91, 184, 0.7) 0%, transparent 70%);
    animation: psychedelic2 25s ease infinite;
}

.particle:nth-child(3) { 
    width: 550px; 
    height: 550px; 
    top: 30%; 
    left: 20%; 
    background: radial-gradient(circle, rgba(139, 63, 253, 0.5) 0%, transparent 70%);
    animation: psychedelic3 32s ease infinite;
}

.particle:nth-child(4) { 
    width: 450px; 
    height: 450px; 
    top: -10%; 
    left: 70%; 
    background: radial-gradient(circle, rgba(240, 147, 251, 0.6) 0%, transparent 70%);
    animation: psychedelic1 35s ease infinite reverse;
}

.particle:nth-child(5) { 
    width: 520px; 
    height: 520px; 
    top: 60%; 
    left: -5%; 
    background: radial-gradient(circle, rgba(93, 60, 130, 0.7) 0%, transparent 70%);
    animation: psychedelic2 22s ease infinite;
}

.particle:nth-child(6) { 
    width: 480px; 
    height: 480px; 
    top: 20%; 
    left: 50%; 
    background: radial-gradient(circle, rgba(118, 75, 162, 0.5) 0%, transparent 70%);
    animation: psychedelic3 28s ease infinite reverse;
}

.particle:nth-child(7) { 
    width: 580px; 
    height: 580px; 
    top: 70%; 
    left: 80%; 
    background: radial-gradient(circle, rgba(201, 117, 212, 0.6) 0%, transparent 70%);
    animation: psychedelic1 33s ease infinite;
}

.particle:nth-child(8) { 
    width: 500px; 
    height: 500px; 
    top: 40%; 
    left: 30%; 
    background: radial-gradient(circle, rgba(61, 141, 208, 0.5) 0%, transparent 70%);
    animation: psychedelic2 32s ease infinite reverse;
}

.particle:nth-child(9) { 
    width: 530px; 
    height: 530px; 
    top: 10%; 
    left: 90%; 
    background: radial-gradient(circle, rgba(240, 147, 251, 0.7) 0%, transparent 70%);
    animation: psychedelic3 25s ease infinite;
}

.particle:nth-child(10) { 
    width: 490px; 
    height: 490px; 
    top: 80%; 
    left: 40%; 
    background: radial-gradient(circle, rgba(74, 91, 184, 0.6) 0%, transparent 70%);
    animation: psychedelic1 35s ease infinite reverse;
}

@keyframes psychedelic1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(60px, -90px) scale(1.35) rotate(120deg);
    }
    66% {
        transform: translate(-70px, 50px) scale(0.75) rotate(240deg);
    }
}

@keyframes psychedelic2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-80px, -70px) scale(1.25) rotate(90deg);
    }
    50% {
        transform: translate(50px, 90px) scale(1.45) rotate(180deg);
    }
    75% {
        transform: translate(70px, -50px) scale(0.85) rotate(270deg);
    }
}

@keyframes psychedelic3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(90px, 70px) scale(1.15) rotate(72deg);
    }
    40% {
        transform: translate(-60px, -80px) scale(1.35) rotate(144deg);
    }
    60% {
        transform: translate(80px, -60px) scale(0.8) rotate(216deg);
    }
    80% {
        transform: translate(-50px, 40px) scale(1.2) rotate(288deg);
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: cardAppear 0.35s ease-out forwards;
    will-change: transform;
    z-index: 1;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }
.product-card:nth-child(7) { animation-delay: 0.3s; }
.product-card:nth-child(8) { animation-delay: 0.35s; }

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    z-index: 10 !important;
}

.product-card:active {
    transform: scale(0.98) !important;
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Специальная высота для первых шести карточек на главной */
.product-card:nth-child(1) .product-image,
.product-card:nth-child(2) .product-image,
.product-card:nth-child(3) .product-image,
.product-card:nth-child(4) .product-image,
.product-card:nth-child(5) .product-image,
.product-card:nth-child(6) .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Для каталога - YouTube на 7 позиции, Adobe на 8 позиции и CapCut на 9 позиции */
.products-grid .product-card:nth-child(7) .product-image,
.products-grid .product-card:nth-child(8) .product-image,
.products-grid .product-card:nth-child(9) .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    background: white;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-badge.badge-hit {
    background: #FFD700;
    color: #1a1a1a;
    top: 35px;
    right: 12px;
}

.product-badge.badge-category {
    background: white;
    color: #1a1a1a;
    top: 25px;
    right: 12px;
}

/* Для карточек с "Хит" бейджем - опускаем бейдж категории ниже */
.product-card:nth-child(1) .product-badge.badge-category {
    top: 73px;
}

.product-badge.hot {
    background: white;
    color: #1a1a1a;
}

.product-badge.new {
    background: white;
    color: #1a1a1a;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Специальные стили для первых шести карточек на главной (ChatGPT, Midjourney, VPN, YouTube, Adobe и CapCut) */
.product-card:nth-child(1) .product-info,
.product-card:nth-child(2) .product-info,
.product-card:nth-child(3) .product-info,
.product-card:nth-child(4) .product-info,
.product-card:nth-child(5) .product-info,
.product-card:nth-child(6) .product-info {
    padding: 0px 20px 18px 20px;
    margin-top: -4px;
}

/* Для каталога - YouTube на 7 позиции, Adobe на 8 позиции и CapCut на 9 позиции */
.products-grid .product-card:nth-child(7) .product-info,
.products-grid .product-card:nth-child(8) .product-info,
.products-grid .product-card:nth-child(9) .product-info {
    padding: 0px 20px 18px 20px;
    margin-top: -4px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-description {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.btn-buy {
    background: #1a1a1a !important;
    color: white !important;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.btn-buy:hover {
    background: #333 !important;
    transform: scale(1.05);
    color: white !important;
}

.btn-buy:visited {
    background: #1a1a1a !important;
    color: white !important;
}

.btn-buy:active {
    background: #1a1a1a !important;
    color: white !important;
}

.btn-buy:focus {
    background: #1a1a1a !important;
    color: white !important;
    outline: none;
}

.btn-show-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6) !important;
}

.btn-show-more:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.news-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

/* Убираем затемнение для изображений новостей */
.news-image[style*="welcome-image"]::before,
.news-image[style*="atlas-image"]::before,
.news-image[style*="sora2-image"]::before {
    display: none;
}

.news-image-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-image-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.news-image-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Специальная настройка для всех фото новостей (1280x512) */
.news-image[style*="welcome-image"] {
    background-size: 100% 100% !important;
    background-position: center center !important;
    height: 240px !important;
}

/* Увеличенный зум для Atlas и Sora 2 */
.news-image[style*="atlas-image"],
.news-image[style*="sora2-image"] {
    background-size: 115% auto !important;
    background-position: center center !important;
    height: 240px !important;
}

.news-icon {
    font-size: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
}

.news-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
}

/* Новый дизайн шапки отзывов */
.reviews-header {
    margin-bottom: 50px;
}

.reviews-header-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.25);
}

.reviews-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-main-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.telegram-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.telegram-link svg {
    flex-shrink: 0;
}

.reviews-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-card {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-stars {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 6px rgba(255, 193, 7, 0.5));
}

.stat-stars span {
    display: inline-block;
}

.stat-stars.animate span {
    animation: starShine 0.8s ease-out forwards;
}

.stat-stars.animate span:nth-child(1) { animation-delay: 0s; }
.stat-stars.animate span:nth-child(2) { animation-delay: 0.15s; }
.stat-stars.animate span:nth-child(3) { animation-delay: 0.3s; }
.stat-stars.animate span:nth-child(4) { animation-delay: 0.45s; }
.stat-stars.animate span:nth-child(5) { animation-delay: 0.6s; }

@keyframes starShine {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0px rgba(255, 193, 7, 0));
        transform: scale(1);
    }
    50% {
        filter: brightness(2) drop-shadow(0 0 15px rgba(255, 193, 7, 1));
        transform: scale(1.15);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Подзаголовок "Последние 10 отзывов" */
.reviews-subtitle-wrapper {
    text-align: center;
    margin: 40px 0 30px;
}

.reviews-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.reviews-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Медиа-запросы для мобильных */
@media (max-width: 768px) {
    .reviews-header-content {
        padding: 30px 25px;
    }
    
    .reviews-title-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-main-title {
        font-size: 24px;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .stat-divider {
        width: 100%;
        height: 2px;
    }
    
    .reviews-subtitle {
        font-size: 20px;
    }
}

.reviews-slider {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    padding: 50px 30px;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.reviews-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #764ba2 75%,
        #667eea 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-rotate 3s linear infinite;
    background-size: 200% 100%;
    z-index: 10;
    pointer-events: none;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    animation: scroll-horizontal 55s linear infinite;
    width: max-content;
    position: relative;
    z-index: 1;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #f0f0f0;
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #667eea);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.review-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.review-card:hover .review-avatar {
    transform: rotate(360deg) scale(1.08);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.review-card:hover .review-avatar::after {
    opacity: 0.3;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.review-card:hover .review-name {
    color: #667eea;
    transform: translateX(5px);
}

.review-source {
    font-size: 13px;
    color: #667eea;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-card:hover .review-source {
    color: #764ba2;
    transform: translateX(5px);
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-stars {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.review-card:hover .review-stars {
    transform: scale(1.05) translateX(8px);
    text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.3);
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.3);
    }
    50% {
        opacity: 0.9;
        text-shadow: 2px 2px 6px rgba(255, 193, 7, 0.4);
    }
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.review-card:hover .review-text {
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Telegram ссылка в одну строку */
.footer-section span a {
    display: inline !important;
    margin-bottom: 0 !important;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-section p {
    color: #aaa;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Page Buttons */
.btn-buy-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 55px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    flex: 1;
}

.btn-buy-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.btn-add-cart {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 55px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    flex: 1;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive */
/* ============================================
   МОБИЛЬНАЯ ВЕРСИЯ - УЛУЧШЕННАЯ АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .header-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
    }
    
    .header-left {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .header-center {
        order: 2;
        width: 100%;
        justify-content: flex-start;
        margin-top: 0;
    }
    
    .header-right {
        order: 1;
        width: auto;
        margin-left: auto;
        margin-top: -8px;
        margin-bottom: 0;
        align-self: flex-start;
        align-items: flex-start;
        padding-top: 0;
        position: relative;
    }
    
    .header-actions {
        gap: 10px;
        align-items: flex-start;
        align-self: flex-start;
        padding-top: 0;
        margin-top: 0;
        display: flex;
        flex-direction: row;
    }
    
    .btn-icon {
        width: 50px;
        height: 50px;
        padding: 0;
        font-size: 24px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        align-self: flex-start;
        flex-shrink: 0;
    }
    
    /* Увеличиваем иконку поиска */
    .btn-icon:first-child {
        font-size: 26px;
        width: 52px;
        height: 52px;
    }
    
    .nav {
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 16px;
        background: rgba(102, 126, 234, 0.08);
        border-radius: 10px;
        min-width: auto;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
    }
    
    .logo-wrapper {
        margin-top: 8px;
        align-items: flex-start;
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .logo {
        margin-top: 0;
        gap: 8px;
        align-items: flex-start;
        display: flex;
        flex-direction: row;
    }

    .logo-image {
        width: 45px;
        height: 45px;
        margin-top: 4px;
        align-self: flex-start;
        flex-shrink: 0;
    }

    .logo h1 {
        font-size: 20px;
        margin-top: 24px;
        line-height: 1;
        align-self: flex-start;
    }

    .logo-subtitle {
        font-size: 8px;
        margin-right: 0;
        margin-left: 6px;
        margin-top: 0px;
        letter-spacing: 1px;
        text-align: left;
    }

    .nav {
        display: flex;
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .nav-link {
        font-size: 14px;
    }

    .header-actions {
        gap: 10px;
        margin-left: auto;
        align-self: flex-start;
        padding-top: 0;
        margin-top: 0;
    }

    .btn-icon {
        padding: 8px 12px;
        font-size: 16px;
        border-radius: 12px;
        align-self: flex-start;
        margin-top: 0;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 14px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        white-space: normal;
        text-align: center;
        padding: 0 10px;
    }

    .btn-primary {
        padding: 10px 32px;
        font-size: 14px;
        border-radius: 40px;
    }

    .reviews-link {
        font-size: 14px;
        margin-top: 14px;
    }

    /* Products Section */
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 4px;
    }

    .product-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .product-footer {
        gap: 12px;
    }

    .product-price {
        font-size: 18px;
    }

    .btn-buy {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Reviews Section */
    .reviews-header-content {
        padding: 24px 16px;
    }

    .reviews-title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .reviews-main-title {
        font-size: 22px;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 2px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }

    .reviews-slider {
        padding: 30px 16px;
        border-radius: 16px;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .reviews-rating {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .telegram-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .rating-score {
        font-size: 24px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Newsletter */
    .newsletter-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .newsletter-left {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form-compact {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input-compact {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .newsletter-btn-compact {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 12px 0;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
    }

    .product-card {
        margin: 0;
    }

    .product-image {
        height: 160px;
    }

    .review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 16px;
    }

    .btn-primary {
        padding: 10px 28px;
        font-size: 13px;
    }

    .btn-buy {
        padding: 9px 18px;
        font-size: 13px;
    }
}

/* Newsletter Subscribe Section - Compact */
.newsletter-subscribe-section {
    padding: 40px 0;
}

.newsletter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 3px solid transparent;
    background-image: 
        linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 18px;
    padding: 28px 36px;
    gap: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.25), 
                0 4px 16px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.newsletter-bar:hover {
    box-shadow: 0 16px 56px rgba(102, 126, 234, 0.35),
                0 8px 24px rgba(118, 75, 162, 0.2);
    transform: translateY(-4px);
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.newsletter-emoji {
    font-size: 38px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.newsletter-text-compact {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.newsletter-text-compact strong {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 0.3px;
}

.newsletter-text-compact span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.newsletter-form-compact {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.newsletter-input-compact {
    width: 280px;
    padding: 15px 22px;
    background: #f8f9ff;
    border: 2px solid #d0d5ff;
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-compact:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.newsletter-input-compact::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-btn-compact {
    padding: 15px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.6);
    letter-spacing: 0.5px;
}

.newsletter-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.8);
    background: linear-gradient(135deg, #7c8ef5 0%, #8b60b8 100%);
}

.newsletter-btn-compact:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .newsletter-bar {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .newsletter-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form-compact {
        width: 100%;
        flex-direction: column;
    }
    
    .newsletter-input-compact {
        width: 100%;
    }
    
    .newsletter-btn-compact {
        width: 100%;
    }
}

