
        :root {
            --puffy-yellow: #FFD200;
            --puffy-yellow-light: #FFE14D;
            --puffy-yellow-dark: #E6BD00;
            --puffy-black: #1a1a1a;
            --puffy-dark: #0d0d0d;
            --bg-card: #242424;
            --bg-card-light: #2e2e2e;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #707070;
            --border-color: #3a3a3a;
        }

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

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--puffy-dark);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 15% 85%, rgba(255, 210, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 15%, rgba(255, 210, 0, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 225, 77, 0.03) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* HERO SECTION */
        .hero {
            min-height: 75vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 24px 60px;
        }

        .logo-wrapper {
            position: relative;
            margin-bottom: 40px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo-wrapper:hover {
            transform: scale(1.05) rotate(-1deg);
        }

        .logo-link {
            display: block;
            position: relative;
        }

        .logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 220px;
            height: 220px;
            background: var(--puffy-yellow);
            filter: blur(80px);
            opacity: 0.35;
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.15); }
        }

        .logo-img {
            width: 180px;
            height: auto;
            object-fit: contain;
            border-radius: 20px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            filter: drop-shadow(0 10px 30px rgba(255, 210, 0, 0.3));
        }

        .logo-link:hover .logo-img {
            filter: drop-shadow(0 15px 40px rgba(255, 210, 0, 0.5));
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5.5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .hero h1 span {
            color: var(--puffy-yellow);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 36px;
            max-width: 480px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 42px;
            background: var(--puffy-yellow);
            color: var(--puffy-black);
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            text-decoration: none;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(255, 210, 0, 0.3);
        }

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

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 210, 0, 0.4);
            background: var(--puffy-yellow-light);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        /* PROMO CODE SECTION */
        .promo-section {
            padding: 40px 24px 80px;
        }

        .promo-card {
            background: var(--bg-card);
            border: 2px solid var(--puffy-yellow);
            border-radius: 28px;
            padding: 48px;
            max-width: 580px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 210, 0, 0.1) inset;
        }

        .promo-card::before {
            content: '😊';
            position: absolute;
            top: -30px;
            right: -30px;
            font-size: 120px;
            opacity: 0.05;
            transform: rotate(15deg);
        }

        .promo-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--puffy-yellow);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .promo-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 28px;
            color: var(--text-primary);
        }

        .promo-code-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .code-mask {
            font-family: 'Space Mono', monospace;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 6px;
            color: var(--puffy-yellow);
            background: rgba(255, 210, 0, 0.1);
            padding: 18px 36px;
            border-radius: 16px;
            border: 2px dashed rgba(255, 210, 0, 0.4);
        }

        .copy-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--puffy-yellow);
            color: var(--puffy-black);
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 210, 0, 0.25);
        }

        .copy-button:hover {
            background: var(--puffy-yellow-light);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 210, 0, 0.35);
        }

        .copy-button.copied {
            background: #4ade80;
            color: #fff;
        }

        .copy-button svg {
            width: 18px;
            height: 18px;
        }

        .promo-hint {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 20px;
        }

        /* BRAND TEXT SECTION */
        .brand-section {
            padding: 80px 24px;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 210, 0, 0.02) 50%, transparent 100%);
        }

        .brand-content {
            max-width: 780px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--puffy-yellow);
            margin-bottom: 12px;
            display: block;
            font-weight: 700;
        }

        .brand-title {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 28px;
            position: relative;
            display: inline-block;
            color: var(--puffy-yellow);
        }

        .brand-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--puffy-yellow);
            border-radius: 2px;
        }

        .brand-text {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.85;
        }

        .brand-text p {
            margin-bottom: 22px;
        }

        .brand-text p:last-child {
            margin-bottom: 0;
        }

        .highlight-box {
            background: rgba(255, 210, 0, 0.08);
            border-left: 4px solid var(--puffy-yellow);
            padding: 22px 26px;
            margin: 32px 0 0 0;
            border-radius: 0 16px 16px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--text-primary);
            font-weight: 600;
        }

        /* OTHER BRANDS SECTION */
        .other-brands {
            padding: 80px 24px;
            background: var(--bg-card);
        }

        .other-brands .container {
            max-width: 960px;
        }

        .other-brands-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .other-brands-title {
            font-size: 2rem;
            font-weight: 800;
        }

/* ============================= */
/* OTHER BRANDS – FINAL FIX */
/* ============================= */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.brand-card {
    background: var(--puffy-dark);
    border: 1px solid var(--border-color);
    border-radius: 18px;

    padding: 20px 16px;
    min-height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-decoration: none;
    color: var(--text-primary);

    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: var(--puffy-yellow);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* LOGO WRAP (через img, без доп. div) */
.brand-card img {
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    max-width: 116px;
    max-height: 64px;
    width: auto;
    height: auto;

    object-fit: contain;
    margin: 0 auto 12px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* DISCOUNT */
.brand-card strong {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--puffy-yellow);
    margin: 6px 0 4px;
}

/* NAME */
.brand-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .brand-card {
        min-height: 185px;
        padding: 18px 14px;
    }

    .brand-card img {
        max-width: 88px;
        max-height: 40px;
        padding: 8px 10px;
    }
}



        /* FOOTER */
        .footer {
            padding: 48px 24px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            background: var(--puffy-dark);
        }

        .footer-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .footer-text strong {
            color: var(--puffy-yellow);
            font-weight: 800;
        }

        .footer-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--puffy-yellow);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--puffy-yellow-light);
        }

        .footer-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .footer-link:hover svg {
            transform: translateX(4px);
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--puffy-yellow);
            color: var(--puffy-black);
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 700;
            z-index: 1000;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(255, 210, 0, 0.3);
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .toast svg {
            width: 20px;
            height: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 65vh;
                padding: 60px 16px 40px;
            }

            .logo-img {
                width: 140px;
            }

            .promo-card {
                padding: 32px 20px;
            }

            .code-mask {
                font-size: 1.6rem;
                letter-spacing: 4px;
                padding: 14px 24px;
            }

            .promo-code-display {
                flex-direction: column;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .brand-card {
                padding: 22px 14px;
            }
        }
