        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        
        
        .language-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 99999;
            display: flex;
            gap: 10px;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            padding: 12px 16px;
            border-radius: 50px;
            border: 1px solid rgba(147, 51, 234, 0.3);
            box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
        }
        
        .lang-button {
            background: transparent;
            border: none;
            color: #9333ea;
            font-size: 18px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }
        
        .lang-button:hover {
            background: rgba(147, 51, 234, 0.2);
            transform: scale(1.1);
        }
        
        .lang-button.active {
            color: white;
            box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
        }
        
        @media (max-width: 768px) {
            .language-switcher {
                top: 10px;
                right: 10px;
                padding: 8px 12px;
            }
            
            .lang-button {
                font-size: 16px;
                width: 35px;
                height: 35px;
                padding: 6px 10px;
            }
        }

        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100dvh; 
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-gradient-top {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: clamp(100px, 20vh, 200px);
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
            z-index: 2;
        }
        
        .hero-gradient-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: clamp(150px, 30vh, 300px);
            background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
            z-index: 2;
        }
        
        .hero-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            object-fit: cover;
            filter: brightness(0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: clamp(20px, 5vw, 40px);
            max-width: 1200px;
            width: 100%;
            animation: fadeIn 1s ease-in;
        }
        
        .hero-content h1 {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 800;
            margin-bottom: clamp(20px, 4vh, 30px);
            text-transform: uppercase;
            letter-spacing: clamp(1px, 0.2vw, 3px);
            text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: clamp(15px, 3vh, 20px);
            font-weight: 300;
            line-height: 1.5;
            padding: 0 10px;
        }
        
        
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
            animation: bounce 2s infinite;
        }
        
        .scroll-down-arrow {
            width: 50px;
            height: 50px;
            border: 2px solid #9333ea;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(147, 51, 234, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .scroll-down:hover .scroll-down-arrow {
            background: rgba(147, 51, 234, 0.3);
            border-color: #ec4899;
            transform: scale(1.1);
        }
        
        .scroll-down-arrow::after {
            content: '↓';
            font-size: 24px;
            color: #9333ea;
            font-weight: bold;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        .highlight { 
            color: #9333ea; 
            font-weight: 700;
            display: inline-block;
        }
        
        
        section { 
            position: relative; 
            padding: clamp(60px, 10vw, 100px) clamp(15px, 3vw, 20px);
        }
        
        .container { 
            max-width: 1200px; 
            margin: 0 auto;
            width: 100%;
            padding: 0 15px;
        }
        
        .section-title {
            font-size: clamp(2rem, 6vw, 3rem);
            text-align: center;
            text-transform: uppercase;
            margin-bottom: clamp(40px, 8vw, 60px);
            letter-spacing: clamp(1px, 0.15vw, 2px);
            line-height: 1.2;
        }
        
        
        .features { 
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: clamp(20px, 4vw, 30px);
            margin-top: clamp(30px, 6vw, 50px);
        }
        
        .feature-item {
            text-align: center;
            padding: clamp(20px, 4vw, 30px);
            background: rgba(147, 51, 234, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(147, 51, 234, 0.2);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        
        .feature-item:hover {
            background: rgba(147, 51, 234, 0.2);
            transform: translateY(-5px);
        }
        
        .feature-icon { 
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: clamp(15px, 3vw, 20px);
        }
        
        .feature-item h4 { 
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            margin-bottom: clamp(10px, 2vw, 15px);
            color: #9333ea;
            line-height: 1.3;
        }
        
        .feature-item p {
            font-size: clamp(0.875rem, 2.5vw, 0.95rem);
            line-height: 1.6;
            color: #b0b0b0;
        }
        
        
        footer {
            background: #000;
            padding: clamp(30px, 5vw, 40px) clamp(15px, 3vw, 20px);
            text-align: center;
            border-top: 1px solid rgba(147, 51, 234, 0.3);
        }
        
        footer p { 
            color: #888;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            line-height: 1.5;
        }
        
        
        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
        
        
        @media (hover: none) and (pointer: coarse) {
            .feature-item:active {
                background: rgba(147, 51, 234, 0.25);
                transform: scale(0.98);
            }
        }
        
        
        @media (min-width: 768px) and (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content p {
                font-size: 1.3rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 50px 15px;
            }
        }
        
        
        @media (max-width: 480px) {
            .hero-content {
                padding: 15px;
            }
            
            .hero-content h1 {
                margin-bottom: 15px;
            }
            
            .hero-content p {
                margin-bottom: 10px;
            }
            
            .features-grid {
                gap: 15px;
            }
            
            .feature-item {
                padding: 20px 15px;
            }
        }
        
        
        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 1.75rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
        }
        
        
        @media (min-width: 1440px) {
            .container {
                max-width: 1400px;
            }
        }
        
        
        @media print {
            .hero-bg {
                display: none;
            }
            
            body {
                background: white;
                color: black;
            }
        }
        
        .product-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
            padding: clamp(60px, 10vw, 120px) clamp(15px, 3vw, 20px);
            position: relative;
            overflow: hidden;
        }
        
        .product-section-alt {
            background: linear-gradient(135deg, #0a0a0a 0%, #2e0a1a 50%, #0a0a0a 100%);
            padding: clamp(60px, 10vw, 120px) clamp(15px, 3vw, 20px);
            position: relative;
            overflow: hidden;
        }
        
        .product-section::before,
        .product-section-alt::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .product-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: start;
            position: relative;
            z-index: 1;
        }
        
        .product-container.reverse {
            direction: rtl;
        }
        
        .product-container.reverse > * {
            direction: ltr;
        }
        
        .product-image-wrapper {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .product-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(147, 51, 234, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-image:hover {
            transform: scale(1.05);
            box-shadow: 0 40px 80px rgba(147, 51, 234, 0.6);
        }
        
        .product-disclaimer {
            margin-top: 15px;
            font-size: clamp(0.75rem, 2vw, 0.85rem);
            color: #888;
            text-align: center;
            font-style: italic;
            line-height: 1.5;
        }
        
        .product-info {
            animation: slideInRight 1s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .product-badge {
            display: inline-block;
            background: linear-gradient(135deg, #9333ea, #ec4899);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: slideIn 1s ease-out;
        }
        
        .product-badge.halloween {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .product-description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #b0b0b0;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .buy-button {
            display: inline-block;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .buy-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .buy-button:hover::before {
            left: 100%;
        }
        
        .buy-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
        }
        
        .buy-button:active {
            transform: translateY(0);
        }
        
        .download-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .download-button img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }
        
        .download-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .download-button:hover::before {
            left: 100%;
        }
        
        .download-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
        }
        
        .download-button:active {
            transform: translateY(0);
        }
        
        .mod-changes {
            margin-top: 30px;
        }
        
        .mod-changes h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: #ff8c00;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .mod-changes ul {
            list-style: none;
            padding-left: 0;
        }
        
        .mod-changes li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #d0d0d0;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.6;
        }
        
        .mod-changes li::before {
            content: '🔥';
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }
        
        .features-list {
            margin-top: 30px;
        }
        
        .feature-category {
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }
        
        .feature-category:nth-child(1) { animation-delay: 0.1s; }
        .feature-category:nth-child(2) { animation-delay: 0.2s; }
        .feature-category:nth-child(3) { animation-delay: 0.3s; }
        .feature-category:nth-child(4) { animation-delay: 0.4s; }
        .feature-category:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .feature-category h3 {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            color: #9333ea;
            margin-bottom: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-category ul {
            list-style: none;
            padding-left: 0;
        }
        
        .feature-category li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #d0d0d0;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: color 0.3s ease;
        }
        
        .feature-category li:hover {
            color: #fff;
        }
        
        .feature-category li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #9333ea;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        
        .features-toggle {
            background: rgba(147, 51, 234, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.3);
            color: #9333ea;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .features-toggle:hover {
            background: rgba(147, 51, 234, 0.2);
        }
        
        .features-toggle-icon {
            transition: transform 0.3s ease;
        }
        
        .features-toggle.active .features-toggle-icon {
            transform: rotate(180deg);
        }
        
        .features-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .features-content.active {
            max-height: 2000px;
        }
        
        
        @media (max-width: 768px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .product-image-wrapper {
                order: -1;
            }
            
            .product-title {
                font-size: 2rem;
            }
            
            .buy-button {
                width: 100%;
                text-align: center;
            }
            
            .feature-category li {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .product-section {
                padding: 40px 15px;
            }
            
            .product-badge {
                font-size: 0.75rem;
                padding: 6px 15px;
            }
        }

        
        .download-buttons-container {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 15px;
            margin-top: 20px;
            justify-content: flex-start;
            align-items: center;
        }
        
        .download-buttons-container .download-button {
            display: inline-flex;
            padding: 16px 35px;
            font-size: clamp(0.95rem, 2.2vw, 1.1rem);
            white-space: nowrap;
        }
        
        @media (min-width: 601px) and (max-width: 768px) {
            .download-buttons-container {
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                gap: 10px;
                justify-content: center;
            }
            
            .download-buttons-container .download-button {
                padding: 14px 22px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 600px) {
            .download-buttons-container {
                flex-direction: column !important;
                flex-wrap: wrap !important;
                gap: 12px;
                justify-content: center;
                width: 100%;
            }
            
            .download-buttons-container .download-button {
                width: 100%;
                padding: 16px 24px;
                font-size: 1rem;
                text-align: center;
            }
        }

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-images {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(147, 51, 234, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(147, 51, 234, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: #9333ea;
    border-color: white;
    transform: scale(1.2);
}

.contact-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    display: inline-block;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

.contact-button:active {
    transform: translateY(0);
}

.product-badge.custom {
    background: linear-gradient(135deg, #505050, #606060);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.prev {
        left: 10px;
    }
    
    .carousel-arrow.next {
        right: 10px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
    }
}

#custom-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

#custom-section::before {
    background: radial-gradient(circle at 50% 50%, rgba(100, 100, 100, 0.15) 0%, transparent 70%);
}


.youtubers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.youtubers-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.youtubers-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youtubers-download-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: inline-block;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.youtubers-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.youtubers-download-button:hover::before {
    left: 100%;
}

.youtubers-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.youtubers-download-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .youtubers-section {
        padding: 40px 20px;
    }
    
    .youtubers-download-button {
        width: 90%;
        max-width: 300px;
    }
}

/* Footer YouTubers */
.footer-youtubers {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-youtubers-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-youtubers-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-youtubers-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Dark Genesis Mod - red glow */
.product-section-alt .product-image {
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.4);
}

.product-section-alt .product-image:hover {
    box-shadow: 0 40px 80px rgba(220, 38, 38, 0.6);
}


.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.social-icon svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

/* YouTube */
.social-icon.youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.social-icon.youtube svg {
    color: #ff0000;
}

.social-icon.youtube::before {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.social-icon.youtube:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.2);
}

.social-icon.youtube:hover::before {
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.5);
}

.social-icon.youtube:hover::after {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
}

.social-icon.youtube:hover svg {
    color: #ffffff;
    transform: scale(1.2) rotate(5deg);
}

/* Telegram */
.social-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    border: 2px solid rgba(0, 136, 204, 0.3);
}

.social-icon.telegram svg {
    color: #0088cc;
}

.social-icon.telegram::before {
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.social-icon.telegram:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.2);
}

.social-icon.telegram:hover::before {
    box-shadow: 0 0 40px rgba(0, 136, 204, 0.8), 0 0 60px rgba(0, 136, 204, 0.5);
}

.social-icon.telegram:hover::after {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.3) 0%, transparent 70%);
}

.social-icon.telegram:hover svg {
    color: #ffffff;
    transform: scale(1.2) rotate(-5deg);
}

/* Telegram Alt */
.social-icon.telegram-alt {
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid rgba(147, 51, 234, 0.3);
}

.social-icon.telegram-alt svg {
    color: #9333ea;
}

.social-icon.telegram-alt::before {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.social-icon.telegram-alt:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: #9333ea;
    background: rgba(147, 51, 234, 0.2);
}

.social-icon.telegram-alt:hover::before {
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.8), 0 0 60px rgba(147, 51, 234, 0.5);
}

.social-icon.telegram-alt:hover::after {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
}

.social-icon.telegram-alt:hover svg {
    color: #ffffff;
    transform: scale(1.2) rotate(5deg);
}

/* Animation on load */
@keyframes socialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icon {
    animation: socialFadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }

/* Mobile */
@media (max-width: 768px) {
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .social-section {
        padding: 40px 20px;
    }
    
    .social-title {
        margin-bottom: 30px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
    }
    
    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Footer Social Links - Compact */
.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* YouTube */
.footer-social-icon.youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.footer-social-icon.youtube svg {
    color: #ff0000;
}

.footer-social-icon.youtube:hover {
    transform: translateY(-5px) scale(1.15);
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.footer-social-icon.youtube:hover svg {
    color: #ffffff;
}

/* Telegram */
.footer-social-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    border: 2px solid rgba(0, 136, 204, 0.3);
}

.footer-social-icon.telegram svg {
    color: #0088cc;
}

.footer-social-icon.telegram:hover {
    transform: translateY(-5px) scale(1.15);
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.6);
}

.footer-social-icon.telegram:hover svg {
    color: #ffffff;
}

/* Telegram Alt */
.footer-social-icon.telegram-alt {
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid rgba(147, 51, 234, 0.3);
}

.footer-social-icon.telegram-alt svg {
    color: #9333ea;
}

.footer-social-icon.telegram-alt:hover {
    transform: translateY(-5px) scale(1.15);
    background: rgba(147, 51, 234, 0.2);
    border-color: #9333ea;
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.6);
}

.footer-social-icon.telegram-alt:hover svg {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-social-links {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Custom Design Section - white glow */
#custom-section .product-image {
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3);
}

#custom-section .product-image:hover {
    box-shadow: 0 40px 80px rgba(255, 255, 255, 0.5);
}

#custom-section .carousel-image {
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3);
}

#custom-section .carousel-image:hover {
    box-shadow: 0 40px 80px rgba(255, 255, 255, 0.5);
}

/* CryoWinter specific styles */
.cryowinter-glow {
    box-shadow: 0 30px 60px rgba(96, 165, 250, 0.5) !important;
}

.cryowinter-glow:hover {
    box-shadow: 0 40px 80px rgba(96, 165, 250, 0.7) !important;
}

.product-badge.cryowinter {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.download-button-disabled {
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
}

.download-button-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}


/* CryoWinter Dark Winter Theme */
#cryowinter-section {
    background: linear-gradient(135deg, #0a1929 0%, #0c2d48 25%, #0a1929 50%, #0d3a5c 75%, #0a1929 100%);
    position: relative;
    overflow: hidden;
}

#cryowinter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

#cryowinter-section .product-title,
#cryowinter-section .product-description {
    color: #e0f2fe;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

#cryowinter-section .product-badge.cryowinter {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.6);
}

/* Snowflakes effect */
#cryowinter-section::after {
    content: '❄';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 20px;
    color: rgba(96, 165, 250, 0.4);
    text-shadow: 0 0 15px rgba(96, 165, 250, 1);
    animation: snowfall 20s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes snowfall {
    0% { 
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% { 
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.1;
    }
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #9333ea;
    border-radius: 50%;
    color: #9333ea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    font-size: 24px;
    font-weight: bold;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: #ec4899;
    transform: scale(1.1);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}
