        * {
            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;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: #7cc6fe;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd166;
            transform: translateY(-2px);
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffd166;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.5rem); border-bottom: 2px solid #415a77; padding-bottom: 0.5rem; margin-top: 2.5rem;}
        h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); margin-top: 2rem; color: #7cc6fe;}
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #b8d0ff;}
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong { color: #ffd166; }
        em { font-style: italic; color: #b8d0ff; }
        header {
            background-color: #1b263b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .logo a:hover {
            color: #7cc6fe;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: #415a77;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .mobile-nav {
            display: none;
            background-color: #1b263b;
            padding: 20px;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 10px;
            display: block;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #415a77;
        }
        .breadcrumb {
            background-color: #415a77;
            padding: 12px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #e0e1dd;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .breadcrumb span {
            color: #b8d0ff;
        }
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.9)), url('https://images.unsplash.com/photo-1611381078802-87d6d6b64e6a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #e0e1dd;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #ff9e00, #ffd166);
            color: #1b263b;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 15px rgba(255, 209, 102, 0.3);
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(255, 209, 102, 0.5);
            color: #0d1b2a;
        }
        .search-section {
            background-color: #1b263b;
            padding: 40px 20px;
            text-align: center;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            color: #1b263b;
        }
        .search-button {
            background-color: #415a77;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #7cc6fe;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background-color: rgba(27, 38, 59, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #b8d0ff;
            padding: 10px;
            background-color: rgba(65, 90, 119, 0.5);
            border-radius: 0 0 10px 10px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #415a77, #1b263b);
            border-left: 5px solid #ffd166;
            padding: 25px;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .internal-links {
            background-color: rgba(124, 198, 254, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .internal-links li {
            margin: 8px 0;
        }
        aside {
            background-color: rgba(27, 38, 59, 0.9);
            padding: 30px;
            border-radius: 15px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            border-bottom: 2px solid #415a77;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #415a77;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd166;
        }
        .rating-widget button {
            background-color: #415a77;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #7cc6fe;
        }
        .update-time {
            font-size: 0.9rem;
            color: #b8d0ff;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #415a77;
        }
        .comments-section {
            margin-top: 60px;
            background-color: rgba(27, 38, 59, 0.7);
            padding: 40px;
            border-radius: 15px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #415a77;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
            margin-bottom: 15px;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid #415a77;
            background-color: #0d1b2a;
            color: #e0e1dd;
        }
        .comment-form button {
            background: linear-gradient(to right, #415a77, #7cc6fe);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: scale(1.05);
        }
        footer {
            background-color: #1b263b;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd166;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 209, 102, 0.1);
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            border-left: 4px solid #ffd166;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(255, 209, 102, 0.2);
            transform: translateX(5px);
        }
        friend-link a {
            color: #e0e1dd;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #415a77;
            color: #b8d0ff;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 15px;
            }
            section {
                padding: 40px 0;
            }
            main article, .comments-section, aside {
                padding: 25px;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero {
                padding: 70px 20px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main article, aside, .comments-section {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 209, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0); }
        }
