        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-bg: #0a0a12;
            --secondary-bg: #111122;
            --accent-gold: #ffd700;
            --accent-blue: #0066cc;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --border-color: #333344;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000022, var(--primary-bg));
            padding: 1.5rem 2rem;
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Impact', sans-serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #ffd700, 2px 2px 0 #000;
            position: relative;
        }
        .my-logo::after {
            content: '🦇';
            font-size: 1.8rem;
            position: absolute;
            top: -10px;
            right: -35px;
        }
        .my-logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 215, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background-color: var(--secondary-bg);
            padding: 1rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:last-of-type {
            color: var(--accent-gold);
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr min(800px, 100%) 1fr;
            gap: 2rem;
            padding: 2rem;
            max-width: 1600px;
            margin: 0 auto;
        }
        .main-container > * {
            grid-column: 2;
        }
        .sidebar-left, .sidebar-right {
            grid-column: auto;
            background-color: var(--secondary-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        @media (max-width: 1100px) {
            .sidebar-left, .sidebar-right {
                display: none;
            }
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        h1, h2, h3, h4 {
            color: var(--accent-gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid var(--accent-blue);
            padding-bottom: 1rem;
            margin-top: 1rem;
        }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: var(--text-primary); }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 2.5rem;
            font-style: italic;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 3rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            list-style: none;
            padding: 1.5rem;
            background-color: rgba(0, 102, 204, 0.05);
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li:before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
        .interactive-box {
            background-color: var(--secondary-bg);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .interactive-box h3 {
            margin-top: 0;
            color: var(--accent-blue);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: #1a1a2a;
            color: var(--text-primary);
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, var(--accent-blue), #004499);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin: 1rem 0;
        }
        .rating-stars .star {
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: #000011;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-blue);
            margin-top: 0;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--text-secondary);
        }
        friend-link a {
            color: inherit;
        }
        friend-link a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 800; color: var(--accent-gold); }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
