:root {
            --primary-sand: #d4b483;
            --deep-spice: #a8642a;
            --arrakis-orange: #c84a09;
            --fremen-blue: #2a5d8a;
            --shadow-dark: #1a1a1a;
            --text-light: #f5f1e8;
            --bg-dark: #0f0f0f;
            --bg-card: #1e1e1e;
            --border-subtle: #333;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--arrakis-orange);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--shadow-dark) 0%, transparent 100%);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-sand), var(--arrakis-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--arrakis-orange);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-sand);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 1px solid var(--border-subtle);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid var(--border-subtle);
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle at center, #2a1f0f 0%, var(--bg-dark) 70%);
            border-bottom: 1px solid var(--deep-spice);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-sand);
            text-shadow: 0 0 10px rgba(216, 167, 67, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--deep-spice);
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background-color: var(--bg-card);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--deep-spice);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: var(--arrakis-orange);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        h2 {
            color: var(--primary-sand);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--deep-spice);
            font-size: 2.2rem;
        }
        h3 {
            color: var(--fremen-blue);
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        h4 {
            color: #aaa;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(168, 100, 42, 0.1);
            border-left: 4px solid var(--deep-spice);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .game-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid var(--border-subtle);
        }
        aside {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .review-form, .rating-form {
            margin-bottom: 2rem;
        }
        .review-form h3, .rating-form h3 {
            color: var(--primary-sand);
            margin-bottom: 1rem;
        }
        textarea, select, input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-subtle);
            border-radius: 5px;
            color: var(--text-light);
        }
        button[type="submit"] {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, var(--deep-spice), var(--arrakis-orange));
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        button[type="submit"]:hover {
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: gold;
        }
        footer {
            background-color: var(--shadow-dark);
            padding: 3rem 0 2rem;
            border-top: 1px solid var(--deep-spice);
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-sand);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            border: 1px solid var(--border-subtle);
        }
        friend-link:hover {
            border-color: var(--primary-sand);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            .content-wrapper { gap: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .hero { padding: 3rem 0; }
            main, aside { padding: 1.5rem; }
            .header-inner { flex-wrap: wrap; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-sand);
        }
        .text-center {
            text-align: center;
        }
