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

        :root {
            --bg-0: #090205;
            --bg-1: #110208;
            --bg-2: #070104;

            --text: #fff7ed;
            --text-muted: rgba(255, 247, 237, 0.82);

            --primary: #ff2d2d;
            --secondary: #fbbf24;
            --primary-rgb: 255, 45, 45;
            --secondary-rgb: 251, 191, 36;

            --surface: rgba(255, 255, 255, 0.05);
            --surface-hover: rgba(255, 255, 255, 0.08);
            --surface-strong: rgba(0, 0, 0, 0.38);
            --border: rgba(251, 191, 36, 0.18);

            --header: rgba(7, 1, 4, 0.42);
            --header-scrolled: rgba(7, 1, 4, 0.88);
            --mobile-nav: rgba(7, 1, 4, 0.94);
            --footer: rgba(0, 0, 0, 0.62);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--bg-0), var(--bg-1), var(--bg-2));
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            overflow-x: hidden;
        }

        html, body {
            touch-action: manipulation;
        }

        a, button {
            touch-action: manipulation;
        }
        
        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* Header */
        .header {
            background: var(--header);
            backdrop-filter: blur(20px);
            padding: 6px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 20px;
            font-weight: bold;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            animation: gradientShift 3s ease infinite;
        }

        .quick-menu {
            position: fixed;
            top: 8px;
            right: 10px;
            z-index: 1200;
        }

        .quick-menu-button {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            border: 1px solid rgba(251, 191, 36, 0.22);
            background: rgba(0, 0, 0, 0.48);
            color: rgba(255, 247, 237, 0.95);
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            backdrop-filter: blur(18px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .quick-menu-panel {
            position: absolute;
            top: 42px;
            right: 0;
            width: 200px;
            padding: 10px;
            border-radius: 14px;
            border: 1px solid rgba(251, 191, 36, 0.22);
            background: rgba(0, 0, 0, 0.60);
            backdrop-filter: blur(18px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
            display: none;
        }

        .quick-menu-panel.active {
            display: block;
        }

        .quick-menu-title {
            font-size: 12px;
            font-weight: 900;
            color: rgba(255, 247, 237, 0.95);
            margin-bottom: 8px;
        }

        .quick-menu-links {
            display: grid;
            gap: 8px;
        }

        .quick-menu-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 12px;
            text-decoration: none;
            color: rgba(255, 247, 237, 0.92);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(251, 191, 36, 0.14);
            font-weight: 800;
            font-size: 12.5px;
        }

        .quick-menu-links a:hover {
            border-color: rgba(var(--secondary-rgb), 0.5);
        }

        .quick-menu-links span {
            font-size: 11px;
            font-weight: 800;
            color: rgba(255, 247, 237, 0.78);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .quick-menu {
                top: 7px;
                right: 8px;
            }

            .quick-menu-button {
                width: 32px;
                height: 32px;
                border-radius: 10px;
                font-size: 15px;
            }

            .quick-menu-panel {
                top: 38px;
                width: 180px;
                padding: 9px;
            }
        }

        @media (min-width: 1024px) {
            .quick-menu {
                top: 10px;
                right: 12px;
            }

            .quick-menu-button {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .quick-menu-panel {
                width: 220px;
            }
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        
        
        /* Hero Section */
        .hero {
            padding: 54px 0 10px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero .hero-description {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 20px;
            margin-bottom: 6px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
            position: relative;
            z-index: 1;
        }
        
        .hero p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.45;
            position: relative;
            z-index: 1;
        }
        
        .btn {
            padding: 10px 18px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.25);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(var(--secondary-rgb), 0.35);
        }
        
        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.35);
        }
        
        /* Brands Section */
        .brands {
            padding: 8px 0 26px;
            position: relative;
        }
        
        .brands::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(var(--secondary-rgb), 0.12) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(var(--primary-rgb), 0.12) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        
        
        .section-title {
            text-align: center;
            font-size: 22px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
            position: relative;
            z-index: 1;
        }
        
        .brands .hero-description {
            text-align: center;
            font-size: 13px;
            margin-bottom: 12px;
            color: var(--text-muted);
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .article {
            padding: 16px 0 30px;
            position: relative;
        }

        .article-card {
            background: var(--surface);
            backdrop-filter: blur(18px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
            color: rgba(255, 247, 237, 0.95);
        }

        .article p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.65;
            margin-bottom: 10px;
        }

        .article ul {
            margin-left: 18px;
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.65;
        }

        .article li {
            margin: 6px 0;
        }

        .contact-strip {
            padding: 0 0 26px;
        }

        .contact-strip .contact-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 14px 16px;
        }

        .contact-strip .contact-text {
            flex: 1;
        }

        .contact-strip .contact-label {
            font-weight: 800;
            margin-bottom: 2px;
            color: rgba(255, 247, 237, 0.95);
        }

        .contact-strip .contact-handle {
            color: var(--text-muted);
            font-size: 13px;
        }

        .contact-strip .contact-btn {
            display: inline-block;
            padding: 8px 14px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            font-weight: 700;
            font-size: 13px;
            white-space: nowrap;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-strip .contact-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(var(--secondary-rgb), 0.25);
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            position: relative;
            z-index: 1;
        }
        
        .brand-card {
            background: rgba(0, 0, 0, 0.36);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 10px;
            text-align: left;
            transition: all 0.35s ease;
            border: 1px solid rgba(251, 191, 36, 0.22);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-rows: auto auto 1fr auto;
            gap: 6px;
            min-height: 138px;
        }

        .brand-card > * {
            position: relative;
            z-index: 1;
        }
        
        .brand-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .brand-card:hover::before {
            opacity: 1;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            background: rgba(0, 0, 0, 0.46);
            box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.22);
            border-color: rgba(var(--primary-rgb), 0.35);
        }

        .brand-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .brand-ident {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .brand-meta {
            min-width: 0;
        }

        .brand-logo {
            width: 44px;
            height: 44px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            font-size: 24px;
            transition: transform 0.25s ease, background 0.25s ease;
            flex: 0 0 auto;
        }

        .brand-card:hover .brand-logo {
            transform: scale(1.06);
            background: rgba(var(--primary-rgb), 0.18);
        }

        .brand-logo img {
            max-width: 36px;
            max-height: 36px;
            object-fit: contain;
        }

        .brand-name {
            font-size: 16px;
            font-weight: 800;
            line-height: 1.1;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .brand-rating {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .brand-mini-badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 900;
            color: rgba(255, 247, 237, 0.95);
            background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.65), rgba(var(--secondary-rgb), 0.45));
            border: 1px solid rgba(251, 191, 36, 0.28);
            white-space: nowrap;
        }

        .brand-stars {
            color: #ffd700;
            font-size: 12px;
            letter-spacing: 0.6px;
        }

        .brand-score {
            font-weight: 800;
            font-size: 11px;
            padding: 3px 7px;
            border-radius: 999px;
            border: 1px solid rgba(var(--secondary-rgb), 0.35);
            background: rgba(var(--secondary-rgb), 0.10);
            color: rgba(255, 247, 237, 0.95);
        }
        
        .brand-description {
            margin-bottom: 6px;
            color: rgba(255, 247, 237, 0.86);
            line-height: 1.6;
            font-size: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .brand-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: -2px;
        }

        .brand-tag {
            display: inline-flex;
            align-items: center;
            padding: 2px 7px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 247, 237, 0.92);
            background: rgba(0, 0, 0, 0.22);
            border: 1px solid rgba(251, 191, 36, 0.22);
        }

        .brand-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-top: 2px;
            position: relative;
            z-index: 4;
        }

        .brand-badge {
            font-size: 11px;
            font-weight: 800;
            padding: 3px 7px;
            border-radius: 999px;
            background: rgba(var(--primary-rgb), 0.12);
            border: 1px solid rgba(var(--primary-rgb), 0.28);
            color: rgba(255, 247, 237, 0.95);
            white-space: nowrap;
        }
        
        .brand-link {
            display: inline-block;
            padding: 7px 12px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            transition: all 0.3s ease;
            font-weight: 800;
            font-size: 12px;
            position: relative;
            z-index: 5;
            pointer-events: auto !important;
        }
        
        .brand-link:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(var(--secondary-rgb), 0.35);
        }
        
        
        
        /* Footer */
        .footer {
            background: var(--footer);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid var(--border);
        }
        
        .footer p {
            color: var(--text-muted);
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
        }
        
        .footer-links a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }

        @media (min-width: 1024px) {
            .hero {
                padding: 72px 0 18px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 15px;
            }

            .brands {
                padding: 14px 0 42px;
            }

            .brands-grid {
                gap: 22px;
            }

            .brand-card {
                padding: 18px;
                gap: 10px;
                min-height: 190px;
            }

            .brand-logo {
                width: 64px;
                height: 64px;
                font-size: 32px;
            }

            .brand-logo img {
                max-width: 52px;
                max-height: 52px;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-stars {
                font-size: 14px;
            }

            .brand-score {
                font-size: 12px;
                padding: 4px 9px;
            }

            .brand-description {
                font-size: 14px;
            }

            .brand-tag {
                font-size: 12px;
                padding: 4px 10px;
            }

            .brand-badge {
                display: none;
            }

            .brand-mini-badge {
                font-size: 12px;
                padding: 4px 10px;
            }

            .brand-link {
                font-size: 14px;
                padding: 10px 18px;
            }

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

            .article p,
            .article ul {
                font-size: 14px;
            }

            .contact-strip .contact-label {
                font-size: 16px;
            }

            .contact-strip .contact-handle {
                font-size: 14px;
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 52px 0 10px;
            }
            
            .hero h1 {
                font-size: 19px;
            }
            
            .footer {
                padding: 25px 0;
            }
            
            .footer-links {
                gap: 20px;
                flex-wrap: wrap;
            }
            
            .brands {
                padding: 20px 0 40px;
            }
            
            .section-title {
                font-size: 28px;
                margin-bottom: 15px;
            }
            
            .brands-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .brand-card {
                padding: 9px;
                gap: 6px;
                min-height: unset;
                overflow: visible;
            }

            .brand-top {
                flex-wrap: nowrap;
                gap: 8px;
            }

            .brand-rating {
                width: auto;
                justify-content: flex-end;
                white-space: nowrap;
            }

            .brand-mini-badge {
                display: inline-flex;
                font-size: 10px;
                padding: 2px 7px;
            }

            .brand-ident {
                flex: 1 1 auto;
                min-width: 0;
            }
            
            .brand-logo {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }
            
            .brand-logo img {
                max-width: 32px;
                max-height: 32px;
            }

            .brand-sub {
                display: none;
            }

            .brand-stars {
                font-size: 11px;
            }

            .brand-score {
                font-size: 10px;
                padding: 3px 6px;
            }

            .brand-name {
                font-size: 15px;
                margin-bottom: 4px;
            }
            
            .brand-description {
                font-size: 12px;
                margin-bottom: 8px;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }

            .brand-tags {
                display: flex;
                gap: 4px;
                margin-top: 0;
                flex-wrap: wrap;
            }

            .brand-tag {
                font-size: 10px;
                padding: 2px 6px;
                max-width: 100%;
            }

            .brand-tag:nth-child(n+4) {
                display: none;
            }

            .brand-badge {
                font-size: 10px;
                padding: 3px 6px;
            }

            .brand-link {
                padding: 6px 10px;
                font-size: 12px;
            }

            .brand-bottom {
                flex-wrap: wrap;
                gap: 6px;
            }

            .brand-badge {
                display: none;
            }

            .brand-link {
                width: 100%;
                text-align: center;
            }

            .contact-strip .contact-card {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-strip .contact-btn {
                text-align: center;
                width: 100%;
            }
        }

        @media (max-width: 360px) {
            .brands-grid {
                grid-template-columns: 1fr;
            }

            .brand-rating {
                width: auto;
            }
        }
        
        .preview-notice {
            background: rgba(var(--primary-rgb), 0.18);
            border: 2px solid var(--primary);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
        }
