        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e63946;
            --text-color: #f1faee;
            --text-muted: #a8dadc;
            --link-color: #4cc9f0;
            --link-hover: #72efdd;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
            --max-width: 1200px;
            --border-radius: 8px;
        }
        * {
            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.7;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--link-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--link-hover);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .emoji { font-size: 1.2em; }
        .section-spacing {
            padding: 3rem 0;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #e63946, #f4a261);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover {
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(15, 52, 96, 0.7);
            padding: 1rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-muted);
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            max-width: 800px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .search-btn {
            padding: 12px 24px;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c1121f;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(15, 52, 96, 0.8);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4cc9f0;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.8rem;
            color: #72efdd;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a8dadc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(228, 57, 70, 0.2);
            border-left: 4px solid var(--accent-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--link-color);
        }
        .featured-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: var(--shadow);
            border: 3px solid var(--border-color);
        }
        .sidebar {
            background-color: rgba(15, 52, 96, 0.8);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--accent-color);
        }
        .user-interaction {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .submit-btn {
            padding: 14px 28px;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0a0a14;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            border-left: 3px solid var(--link-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid var(--border-color);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
