:root {
            --primary-sand: #d4a574;
            --deep-spice: #b3541e;
            --arrakis-night: #1a1a2e;
            --desert-day: #f5e9d9;
            --fremen-blue: #0f3460;
            --warning-red: #c53d3d;
            --success-green: #4caf50;
            --shadow-dark: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-light: 0 2px 8px rgba(212, 165, 116, 0.2);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--arrakis-night);
            color: var(--desert-day);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--primary-sand);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            border-bottom: 2px solid var(--deep-spice);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: var(--shadow-light);
        }
        .my-logo span {
            color: var(--desert-day);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-sand);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--desert-day);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--arrakis-night);
            padding: 1rem;
            border-top: 1px solid var(--deep-spice);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow-dark);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(180, 84, 30, 0.3);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--primary-sand);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--deep-spice);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-sand);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px double var(--deep-spice);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--desert-day);
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--fremen-blue);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-sand);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ccc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            background: rgba(180, 84, 30, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--deep-spice);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(180, 84, 30, 0.2), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dashed var(--primary-sand);
        }
        .img-container {
            margin: 2rem auto;
            text-align: center;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--deep-spice);
            box-shadow: var(--shadow-dark);
            transition: transform 0.5s ease;
        }
        .responsive-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(15, 52, 96, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--fremen-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }
        .stat-card i {
            font-size: 2rem;
            color: var(--primary-sand);
            margin-bottom: 0.8rem;
        }
        .quote {
            font-size: 1.1rem;
            padding: 2rem;
            background: rgba(212, 165, 116, 0.05);
            border-left: 5px solid var(--primary-sand);
            margin: 2rem 0;
            font-style: italic;
        }
        .quote-author {
            text-align: right;
            margin-top: 1rem;
            font-weight: bold;
            color: var(--primary-sand);
        }
        aside {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--deep-spice);
            align-self: start;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary-sand);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--deep-spice);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--deep-spice);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--desert-day);
        }
        .search-button {
            background: var(--deep-spice);
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #9a461a;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star {
            color: #555;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--deep-spice);
            border-radius: 6px;
            color: var(--desert-day);
            margin-top: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .submit-button {
            background: linear-gradient(to right, var(--deep-spice), var(--fremen-blue));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
            transition: opacity 0.3s ease;
            width: 100%;
        }
        .submit-button:hover {
            opacity: 0.9;
        }
        footer {
            background-color: rgba(15, 20, 30, 0.95);
            border-top: 2px solid var(--deep-spice);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted rgba(212, 165, 116, 0.3);
        }
        friend-link a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        friend-link a::after {
            content: '↗';
            color: var(--primary-sand);
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .tooltip {
            position: relative;
            display: inline-block;
            border-bottom: 1px dotted var(--primary-sand);
            cursor: help;
        }
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 220px;
            background-color: var(--arrakis-night);
            color: var(--desert-day);
            text-align: center;
            padding: 0.5rem;
            border-radius: 6px;
            border: 1px solid var(--primary-sand);
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -110px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.9rem;
        }
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
