:root {
            --primary-dark: #000814;
            --primary-blue: #003566;
            --accent-yellow: #ffc300;
            --accent-gold: #ffd60a;
            --neutral-gray: #e0e1dd;
            --text-light: #f8f9fa;
            --highlight-red: #e63946;
            --shadow-color: rgba(0, 53, 102, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 3rem;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background-color: rgba(0, 8, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--accent-yellow);
            box-shadow: 0 5px 20px var(--shadow-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 195, 0, 0.5);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--neutral-gray);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .desktop-nav a:hover, .desktop-nav a:focus {
            color: var(--accent-yellow);
            background-color: rgba(255, 195, 0, 0.1);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--accent-yellow);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .desktop-nav a:hover::after {
            transform: scaleX(1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--accent-yellow);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid var(--accent-yellow);
            box-shadow: 0 10px 20px var(--shadow-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--neutral-gray);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 195, 0, 0.2);
            transition: all 0.3s ease;
        }
        .mobile-nav a:hover {
            color: var(--accent-yellow);
            background-color: rgba(255, 195, 0, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--neutral-gray);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(224, 225, 221, 0.2);
        }
        .breadcrumb a {
            color: var(--accent-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--neutral-gray);
        }
        main {
            padding-top: 2rem;
        }
        article {
            background-color: rgba(0, 8, 20, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px var(--shadow-color);
            border: 1px solid rgba(255, 195, 0, 0.2);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 195, 0, 0.3);
            line-height: 1.2;
        }
        .subtitle {
            text-align: center;
            font-size: 1.4rem;
            color: var(--neutral-gray);
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed rgba(255, 195, 0, 0.3);
        }
        h2 {
            font-size: 2.4rem;
            color: var(--accent-gold);
            margin: 2.5rem 0 1.5rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 195, 0, 0.4);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--neutral-gray);
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,195,0,0.15) 0%, rgba(255,214,10,0.05) 100%);
            border-left: 4px solid var(--accent-yellow);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        em {
            color: var(--neutral-gray);
            font-style: italic;
        }
        a.content-link {
            color: var(--accent-yellow);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent-yellow);
            transition: all 0.2s ease;
        }
        a.content-link:hover {
            color: var(--accent-gold);
            border-bottom: 1px solid var(--accent-gold);
            background-color: rgba(255, 195, 0, 0.05);
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .game-card {
            background: rgba(0, 53, 102, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 195, 0, 0.2);
            transition: all 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 195, 0, 0.2);
            border-color: var(--accent-yellow);
        }
        .game-card h4 {
            color: var(--accent-yellow);
            margin-top: 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 3px solid var(--accent-yellow);
            box-shadow: 0 10px 25px var(--shadow-color);
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(0, 53, 102, 0.4);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 195, 0, 0.3);
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: var(--accent-yellow);
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 195, 0, 0.5);
            background-color: rgba(0, 8, 20, 0.7);
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-yellow);
            box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.2);
        }
        button, .submit-btn {
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-gold));
            color: var(--primary-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
        }
        button:hover, .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 195, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: var(--neutral-gray);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover, .star.active {
            color: var(--accent-yellow);
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: var(--neutral-gray);
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(224, 225, 221, 0.3);
        }
        footer {
            background-color: var(--primary-dark);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--accent-yellow);
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--neutral-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: bold;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 195, 0, 0.2);
            color: var(--neutral-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .game-list { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-container { padding: 0.8rem 0; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 1.8rem; }
            .container { padding: 0 1rem; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            .subtitle { font-size: 1.1rem; }
            .game-list { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
