* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --accent: #e94560;
            --gold: #f5c518;
            --cream: #f9f4e8;
            --dark-grey: #333;
            --light-grey: #f4f4f4;
            --green: #2d6a4f;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: #222;
            background-color: var(--cream);
            scroll-behavior: smooth;
        }
        header {
            background: linear-gradient(135deg, #0f0c29, #1a1a2e);
            color: #fff;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .top-bar {
            background: #e94560;
            padding: 6px 20px;
            text-align: center;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffd700;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-links a {
            color: #eee;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 70%;
        }
        .nav-links a:hover {
            color: var(--gold);
            background: rgba(255,255,255,0.08);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: #f8f0e0;
            padding: 12px 30px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "→";
            margin-right: 8px;
            color: #666;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1400" height="600" viewBox="0 0 1400 600"><rect fill="%231a1a2e" width="1400" height="600"/><circle cx="200" cy="150" r="80" fill="%23f5c518" opacity="0.3"/><circle cx="1200" cy="400" r="120" fill="%23e94560" opacity="0.2"/><path d="M0 400 Q350 300 700 400 T1400 350 V600 H0Z" fill="%232d6a4f" opacity="0.6"/><text x="700" y="200" text-anchor="middle" font-size="60" fill="white" font-family="Georgia">⚡</text></svg>') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 80px 30px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
            display: flex;
            gap: 30px;
        }
        .main-content {
            flex: 1 1 70%;
            min-width: 0;
        }
        .sidebar {
            flex: 0 0 30%;
            min-width: 280px;
        }
        .card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-top: 3px solid var(--gold);
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }
        .card h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 12px;
            border-bottom: 2px solid #eee;
            padding-bottom: 8px;
        }
        .card h3 {
            color: #2a2a4a;
            font-size: 1.2rem;
            margin: 18px 0 8px;
        }
        .card h4 {
            color: #555;
            font-size: 1.1rem;
            margin: 12px 0 6px;
        }
        .card p {
            margin-bottom: 12px;
            font-size: 1.02rem;
        }
        .card ul, .card ol {
            margin: 12px 30px 15px;
        }
        .card li {
            margin-bottom: 6px;
        }
        .featured-image {
            width: 100%;
            border-radius: 8px;
            margin: 15px 0;
            background: #ddd;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 250px;
            object-fit: cover;
        }
        .featured-image img {
            max-width: 100%;
            border-radius: 8px;
        }
        .search-box {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 25px;
        }
        .search-box form {
            display: flex;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: border 0.3s;
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--accent);
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: var(--gold);
            color: #222;
        }
        .comment-section, .score-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        .comment-section h2, .score-section h2 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        .comment-section textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            min-height: 100px;
            font-family: inherit;
            resize: vertical;
            outline: none;
        }
        .comment-section textarea:focus {
            border-color: var(--gold);
        }
        .score-section .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.6rem;
            color: #ccc;
            margin: 10px 0;
            cursor: pointer;
        }
        .score-section .star-rating i.active,
        .score-section .star-rating i:hover,
        .score-section .star-rating i:hover ~ i {
            color: var(--gold);
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            font-size: 0.95rem;
        }
        .game-table th, .game-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .game-table th {
            background: var(--primary);
            color: white;
        }
        .game-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--primary);
            border-left: 4px solid var(--accent);
            padding-left: 10px;
        }
        .widget ul {
            list-style: none;
        }
        .widget li {
            margin-bottom: 10px;
            padding: 8px 10px;
            background: var(--light-grey);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .widget li:hover {
            background: #e9e9e9;
        }
        .widget li a {
            text-decoration: none;
            color: #333;
            display: block;
            font-size: 0.95rem;
        }
        footer {
            background: linear-gradient(135deg, #0f0c29, #1a1a2e);
            color: #bbb;
            padding: 40px 30px 20px;
            margin-top: 30px;
        }
        .footer-wrap {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--gold);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            background: #0f0c29;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid var(--gold);
            font-size: 0.95rem;
        }
        friend-link a {
            color: var(--gold);
            text-decoration: none;
            margin-right: 15px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                padding: 20px;
            }
            .sidebar {
                flex: 1 1 100%;
                min-width: 0;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary);
                padding: 15px;
                position: absolute;
                top: 70px;
                left: 0;
                gap: 10px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.4);
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 60px 15px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .game-table {
                font-size: 0.8rem;
            }
            .game-table th, .game-table td {
                padding: 8px;
            }
        }
        .highlight-box {
            background: #fff8e8;
            border-left: 5px solid var(--gold);
            padding: 18px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .quote-box {
            background: #f0f7ff;
            border-left: 5px solid #4a90d9;
            padding: 18px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
            font-style: italic;
        }
        .callout {
            background: #ffeeee;
            border-radius: 8px;
            padding: 15px 20px;
            margin: 15px;
            font-weight: 600;
        }
        html {
            scroll-padding-top: 120px;
        }
