        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1a2b;
            color: #e0e9ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6eb4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a3d5ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        header {
            background: linear-gradient(135deg, #1a2b4a 0%, #0d1525 100%);
            border-bottom: 2px solid #2a3f6f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6eb4ff, #a3d5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(110, 180, 255, 0.3);
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        nav a:hover {
            background-color: rgba(110, 180, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6eb4ff;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 43, 74, 0.5);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6eb4ff;
        }
        main {
            padding: 3rem 0;
            background-color: #111d32;
        }
        article {
            background: rgba(20, 35, 60, 0.7);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 10, 30, 0.5);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #6eb4ff, #a3d5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.4rem;
            color: #a3d5ff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3f6f;
        }
        h3 {
            font-size: 1.8rem;
            color: #8bc1ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b3d7ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(26, 43, 74, 0.7), rgba(42, 63, 111, 0.7));
            border-left: 5px solid #6eb4ff;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .figure {
            margin: 2.5rem auto;
            max-width: 800px;
            text-align: center;
        }
        .figure img {
            border-radius: 10px;
            border: 2px solid #2a3f6f;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .figcaption {
            font-style: italic;
            margin-top: 0.8rem;
            color: #b3d7ff;
            font-size: 0.95rem;
        }
        .last-updated {
            font-size: 0.95rem;
            color: #8bc1ff;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #2a3f6f;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(26, 43, 74, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a3f6f;
        }
        .form-title {
            color: #a3d5ff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: #0f1a2b;
            border: 1px solid #2a3f6f;
            border-radius: 6px;
            color: #e0e9ff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6eb4ff;
            box-shadow: 0 0 8px rgba(110, 180, 255, 0.5);
        }
        button {
            background: linear-gradient(90deg, #2a6bc9, #3a8cff);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #3a8cff, #4d9cff);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(58, 140, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        footer {
            background: #0d1525;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #2a3f6f;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #6eb4ff;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #a3d5ff;
        }
        friend-link a:hover {
            color: #ffffff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a2b4a;
            font-size: 0.9rem;
            color: #8bc1ff;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2.1rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a2b4a;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger { display: block; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
