        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a192f;
            color: #ccd6f6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #64ffda;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #8892b0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #233554;
        }
        header {
            background-color: #112240;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(2, 12, 27, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #64ffda;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #8892b0;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(100, 255, 218, 0.1);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #64ffda;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #0a192f;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #64ffda;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #e6f1ff;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #a8b2d1;
        }
        .highlight {
            color: #64ffda;
            font-weight: bold;
        }
        .content-area {
            background-color: #112240;
            border-radius: 10px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(2, 12, 27, 0.5);
        }
        h1, h2, h3 {
            color: #e6f1ff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #233554;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: #64ffda;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        b, strong {
            color: #64ffda;
            font-weight: 600;
        }
        .lead {
            font-size: 1.3rem;
            color: #a8b2d1;
            margin-bottom: 2rem;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #233554;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #8892b0;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .module {
            background-color: #0a192f;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #64ffda;
        }
        .module h3 {
            margin-top: 0;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            flex: 1;
            min-width: 250px;
            padding: 12px 15px;
            background-color: #112240;
            border: 1px solid #233554;
            border-radius: 5px;
            color: #ccd6f6;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        button {
            background-color: #64ffda;
            color: #0a192f;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background-color: #52d3b6;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .stars i {
            color: #ffd700;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffed4e;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: #112240;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #1a2f5c;
        }
        .web-link a {
            color: #ccd6f6;
            font-weight: 500;
        }
        footer {
            background-color: #020c1b;
            padding: 40px 0;
            text-align: center;
            margin-top: 60px;
        }
        .copyright {
            color: #8892b0;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #233554;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .content-area { padding: 30px; }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #112240;
                width: 70%;
                height: calc(100vh - 80px);
                padding-top: 40px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 20px rgba(2, 12, 27, 0.7);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .hero h1 { font-size: 2.3rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .featured-image { width: 100%; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            .hero { padding: 60px 0; }
            .content-area { padding: 20px; }
            .module { padding: 20px; }
            .search-box input, .comment-form input, .comment-form textarea, .rating-form select { min-width: 100%; }
        }
