:root {
            --primary: #0a2342;
            --secondary: #2a9d8f;
            --accent: #e76f51;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --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.6;
            color: var(--dark);
            background-color: #f0f2f5;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo:hover {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.75rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--accent);
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--gray);
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f8f9fa;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            background: #e7f5ff;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            border-left: 4px solid var(--secondary);
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--primary);
            margin-top: 0.5rem;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dashed var(--secondary);
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .search-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-widget h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #238f7d;
        }
        .rating-widget, .comments-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .rating-widget h3, .comments-widget h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background: #238f7d;
            transform: translateY(-2px);
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .rank-table th {
            background: var(--primary);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .rank-table td {
            padding: 1rem;
            border-bottom: 1px solid #dee2e6;
        }
        .rank-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .rank-table tr:hover {
            background-color: #e9ecef;
        }
        footer {
            background: var(--primary);
            color: white;
            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;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
        }
        friend-link a {
            color: var(--secondary);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                background: rgba(10, 35, 66, 0.95);
                padding: 1rem;
                border-radius: var(--border-radius);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .tag {
            display: inline-block;
            background: #e7f5ff;
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
