        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f72585;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd60a;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            color: #f72585;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            background-color: #778da9;
            color: #0d1b2a;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background-color: #f72585;
            color: white;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd60a;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1b263b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #415a77;
            color: #e0e1dd;
        }
        .nav-mobile a:hover {
            background-color: #415a77;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1b263b;
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #778da9;
        }
        .breadcrumb a {
            color: #4cc9f0;
        }
        main {
            flex: 1;
            padding: 20px 0;
        }
        article {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd60a;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #4cc9f0;
            margin: 25px 0 15px;
            border-bottom: 2px solid #415a77;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.6rem;
            color: #f72585;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #415a77;
            padding: 20px;
            border-left: 5px solid #ffd60a;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .functional-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .search-box, .comment-box, .rating-box {
            background-color: #415a77;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            color: #ffd60a;
            margin-bottom: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 2px solid #778da9;
            border-radius: 5px;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        button {
            background-color: #f72585;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s;
        }
        button:hover {
            background-color: #ffd60a;
            color: #0d1b2a;
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #778da9;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffd60a;
        }
        .content-links {
            margin: 30px 0;
            padding: 20px;
            background-color: #1b263b;
            border-radius: 10px;
        }
        .content-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .content-links li {
            background-color: #415a77;
            padding: 10px 20px;
            border-radius: 5px;
        }
        .content-links a {
            color: #ffd60a;
            font-weight: 600;
        }
        .web-links {
            background-color: #1b263b;
            padding: 30px 0;
            margin-top: 30px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #415a77;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #778da9;
        }
        .web-link a {
            color: #e0e1dd;
            font-weight: 600;
        }
        footer {
            background-color: #0d1b2a;
            padding: 30px 0;
            text-align: center;
            border-top: 3px solid #f72585;
        }
        .copyright {
            font-size: 0.9rem;
            color: #778da9;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .functional-sections {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 2rem;
            }
        }
