        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #0f1419;
            background-image: linear-gradient(to bottom, #1a1f2e, #0f1419);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #4da6ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(90deg, #ff9966, #ff5e62);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
        }
        header {
            background-color: #1a1f2e;
            border-bottom: 2px solid #2a3a5c;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0, 114, 255, 0.3);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #2a3a5c;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4da6ff;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #a0a0a0;
            background-color: #151a25;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background-color: #1a1f2e;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin: 30px 0 15px;
            border-left: 5px solid #ff5e62;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff9966;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #2a3a5c;
            padding: 15px;
            border-left: 4px solid #00c6ff;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 25px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #4da6ff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #a0a0a0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .form-section {
            background-color: #151a25;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .form-section h2 {
            border-left: 5px solid #ffcc00;
        }
        form {
            display: grid;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #2a3a5c;
            border-radius: 5px;
            background-color: #1a1f2e;
            color: #e0e0e0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating label:hover,
        .rating input:checked ~ label {
            color: #ffcc00;
        }
        .internal-links {
            background-color: #151a25;
            padding: 30px 0;
            border-top: 2px solid #2a3a5c;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #2a3a5c;
        }
        .web-link a {
            font-weight: bold;
            display: block;
        }
        footer {
            background-color: #0a0e14;
            color: #a0a0a0;
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #2a3a5c;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                padding: 20px;
                border-top: 1px solid #2a3a5c;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-container, .breadcrumb .container {
                padding: 0 15px;
            }
            article {
                padding: 20px;
            }
            .web-links-container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
