        * {
            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.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            background-attachment: fixed;
            padding-top: 80px; 
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd43b;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffd43b;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd43b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 212, 59, 0.5);
        }
        .my-logo:hover {
            color: #ff6b6b;
            text-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(255, 212, 59, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffd43b;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .main-content {
            background: rgba(26, 26, 58, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            color: #ffd43b;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-family: 'Orbitron', sans-serif;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid #4dabf7;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #4dabf7;
        }
        h4 {
            font-size: 1.6rem;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #ccc;
            text-align: center;
            margin-bottom: 40px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 212, 59, 0.2), transparent);
            border-left: 4px solid #ffd43b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #444;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            border-color: #ffd43b;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #4dabf7;
            margin-bottom: 15px;
        }
        .image-with-caption {
            margin: 40px auto;
            max-width: 800px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 2px dotted #4dabf7;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 5px;
            vertical-align: middle;
        }
        .search-section, .comments-section, .rating-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            flex-grow: 1;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            min-width: 200px;
        }
        .comment-form textarea {
            min-height: 150px;
            width: 100%;
            resize: vertical;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff6b6b, #ffd43b);
            color: #0a0a2a;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #ffd43b, #ff6b6b);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
        }
        .stars .active {
            color: #ffd43b;
        }
        .site-footer {
            background: rgba(10, 10, 42, 0.95);
            border-top: 2px solid #4dabf7;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .main-content { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 42, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 20px 0;
            }
            .nav-links a {
                font-size: 1.3rem;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            p { font-size: 1.1rem; }
            .main-content { padding: 20px; }
            .footer-container { flex-direction: column; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .my-logo { font-size: 1.8rem; }
            .search-form, .comment-form, .rating-form {
                flex-direction: column;
                align-items: stretch;
            }
            button { width: 100%; }
        }
