:root {
            --primary-color: #ea580c; 
            --secondary-color: #16a34a; 
            --accent-color: #f59e0b; 
            --dark-bg: #1c1917; 
            --light-bg: #fefce8; 
            --text-dark: #292524;
            --text-light: #d6d3d1;
            --spice-red: #dc2626;
            --border-radius: 10px;
            --shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.75;
            color: var(--text-dark);
            background-color: var(--light-bg);
            padding-top: 85px;
            background-image: linear-gradient(to bottom, #fefce8 0%, #fef3c7 100%);
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        a:hover {
            color: var(--spice-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(28, 25, 23, 0.95);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .logo a {
            font-size: 1.9rem;
            font-weight: 900;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.6rem 0;
            position: relative;
            font-size: 1.05rem;
        }
        .main-nav a:hover {
            color: white;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger-menu span {
            height: 3px;
            width: 28px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: #ede9fe;
            padding: 0.8rem 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #ddd6fe;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "➤";
            padding: 0 10px;
            color: var(--primary-color);
            font-size: 0.8rem;
        }
        .hero {
            background: linear-gradient(rgba(28, 25, 23, 0.85), rgba(28, 25, 23, 0.9)), url('https://nutmeg-glorious-champion.damangames.center/images/spice-bg-pattern.png');
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-bottom: 4rem;
            border-radius: 0 0 30px 30px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        }
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            text-shadow: 0 4px 8px rgba(0,0,0,0.4);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 850px;
            margin: 0 auto 2.5rem;
            color: #e7e5e4;
        }
        .hero-tagline {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary-color), var(--spice-red));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            letter-spacing: 1px;
            box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
        }
        .content-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            margin-bottom: 3.5rem;
            box-shadow: var(--shadow);
            border: 1px solid #f3f4f6;
            position: relative;
        }
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        .content-section h2 {
            color: var(--dark-bg);
            font-size: 2.4rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
            position: relative;
        }
        .content-section h2::after {
            content: '✦';
            position: absolute;
            right: 0;
            color: var(--primary-color);
        }
        .content-section h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 1rem;
            border-left: 4px solid var(--secondary-color);
        }
        .content-section h4 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 1.8rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            line-height: 1.85;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 6px solid var(--accent-color);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
        }
        .highlight-box::before {
            content: '💡 Pro Tip!';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--accent-color);
            color: var(--dark-bg);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            display: block;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        .interview-quote {
            font-style: italic;
            font-size: 1.35rem;
            color: var(--dark-bg);
            padding: 2.5rem;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border-left: 8px solid var(--secondary-color);
            box-shadow: var(--shadow);
            position: relative;
        }
        .interview-quote::before {
            content: '“';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 6rem;
            color: var(--secondary-color);
            opacity: 0.2;
            font-family: serif;
        }
        .champion-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .champion-table th, .champion-table td {
            border: 1px solid #e5e7eb;
            padding: 1.2rem 1rem;
            text-align: left;
        }
        .champion-table th {
            background: linear-gradient(135deg, var(--dark-bg), #374151);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .champion-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .champion-table tr:hover {
            background-color: #f0fdf4;
        }
        .featured-image {
            margin: 3rem auto;
            max-width: 950px;
            position: relative;
        }
        .featured-image img {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 5px solid white;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            margin-top: 1rem;
            font-size: 1rem;
            padding: 0 1rem;
        }
        .image-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--spice-red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            border-top: 5px solid var(--primary-color);
            background-image: linear-gradient(to bottom, #1c1917 0%, #0c0a09 100%);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
            padding-left: 0;
            transition: var(--transition);
        }
        .footer-links li:hover {
            padding-left: 8px;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .footer-links a::before {
            content: '▸';
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: white;
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 1.5rem;
        }
        .tag {
            background-color: #374151;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #4b5563;
        }
        .tag:hover {
            background-color: var(--primary-color);
            transform: scale(1.05);
            text-decoration: none;
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
        }
        .friend-link {
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid #4b5563;
            text-align: center;
        }
        .friend-link a {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .friend-link a::after {
            content: '↗';
            font-size: 1.1rem;
        }
        .recommendation {
            text-align: center;
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid #4b5563;
            line-height: 1.8;
        }
        .recommendation a {
            color: var(--accent-color);
            font-weight: bold;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid #4b5563;
            color: #9ca3af;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
            z-index: 100;
            opacity: 0;
            transition: var(--transition);
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--spice-red);
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            .content-section {
                padding: 2.5rem;
            }
            .content-section h2 {
                font-size: 2.1rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 75px;
            }
            .hero {
                padding: 4rem 0;
                border-radius: 0 0 20px 20px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 2rem;
                margin-bottom: 2.5rem;
            }
            .content-section h2 {
                font-size: 1.9rem;
            }
            .content-section h3 {
                font-size: 1.6rem;
            }
            .main-nav ul {
                position: fixed;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: rgba(28, 25, 23, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2.5rem 0;
                gap: 1.8rem;
                transform: translateY(-150%);
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
                z-index: 999;
                backdrop-filter: blur(10px);
                border-top: 2px solid var(--primary-color);
            }
            .main-nav.active ul {
                transform: translateY(0);
            }
            .hamburger-menu {
                display: flex;
            }
            .hamburger-menu.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .hamburger-menu.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger-menu.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .champion-table {
                font-size: 0.95rem;
            }
            .champion-table th, .champion-table td {
                padding: 1rem 0.8rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-tagline {
                font-size: 1rem;
                padding: 0.7rem 1.5rem;
            }
            .content-section {
                padding: 1.8rem;
            }
            .content-section h2 {
                font-size: 1.7rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .interview-quote {
                padding: 2rem;
                font-size: 1.2rem;
            }
        }
