        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #70d6ff;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #ffd166;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .site-header {
            background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
            padding: 1rem 2rem;
            border-bottom: 3px solid #ff9e00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff9e00, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }
        .logo a:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0e1dd;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: rgba(112, 214, 255, 0.1);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd166;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #1b263b;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .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: #70d6ff;
        }
        .search-container {
            padding: 2rem;
            background-color: #1b263b;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background-color: #e0e1dd;
            color: #0d1b2a;
            font-size: 1.1rem;
        }
        .search-btn {
            background: linear-gradient(to right, #ff9e00, #ffd166);
            color: #0d1b2a;
            border: none;
            padding: 1rem 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: filter 0.3s;
        }
        .search-btn:hover {
            filter: brightness(1.1);
        }
        .main-content {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1b263b;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #415a77;
            padding-bottom: 1rem;
        }
        h2 {
            color: #70d6ff;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ff9e00;
        }
        h3 {
            color: #ffb347;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        h4 {
            color: #e0e1dd;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.1);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            color: #a9d6e5;
            border-left: 4px solid #415a77;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
            background: linear-gradient(135deg, #1b3a5c, #2a4d7a);
            padding: 2rem;
            border-radius: 10px;
        }
        .stat {
            text-align: center;
            padding: 1rem;
        }
        .stat .number {
            font-size: 3rem;
            font-weight: bold;
            color: #ffd166;
            display: block;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #a9d6e5;
            margin-top: 0.5rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 2px dotted #70d6ff;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: #1b263b;
            padding: 1.8rem;
            border-radius: 10px;
            border-top: 5px solid #ff9e00;
        }
        .sidebar-title {
            color: #ffd166;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #415a77;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background-color: #26334d;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .link-list li:hover {
            background-color: #314363;
        }
        .rating-section, .comment-section {
            background-color: #1b263b;
            padding: 2.5rem;
            margin: 3rem auto;
            max-width: 1400px;
            border-radius: 15px;
            border-top: 5px solid #70d6ff;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd166;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #415a77;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            padding: 1rem 2.5rem;
            background: linear-gradient(to right, #70d6ff, #3a86ff);
            color: #0d1b2a;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(58, 134, 255, 0.4);
        }
        .site-footer {
            background-color: #1b263b;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #415a77;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffd166;
        }
        .footer-title {
            color: #70d6ff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background-color: #26334d;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: #314363;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #415a77;
            color: #a9d6e5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .main-content, .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            article, .rating-section, .comment-section {
                padding: 1.5rem;
            }
        }
