        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1e293b;
            padding: 15px 0;
            border-bottom: 2px solid #334155;
            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;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            text-shadow: 0 0 10px #fbbf24;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb span {
            color: #cbd5e1;
            margin: 0 5px;
        }
        main {
            padding: 40px 0;
            background: linear-gradient(to bottom, #0f172a, #1e293b);
        }
        article {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #86efac;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background-color: #334155;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #fbbf24;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #3b82f6;
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
        }
        .form-section {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 2px solid #334155;
        }
        .form-title {
            font-size: 1.8rem;
            color: #fbbf24;
            margin-bottom: 25px;
            text-align: center;
        }
        form {
            display: grid;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #cbd5e1;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
            box-shadow: 0 0 5px #60a5fa;
        }
        button {
            padding: 15px 30px;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            justify-self: start;
        }
        button:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .star {
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .internal-links {
            background-color: #1e293b;
            padding: 40px 0;
            border-top: 2px solid #334155;
            border-bottom: 2px solid #334155;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #334155;
        }
        .web-link a {
            display: block;
            font-size: 1.1rem;
            color: #60a5fa;
        }
        .web-link a:hover {
            color: #fbbf24;
        }
        footer {
            background-color: #0f172a;
            padding: 30px 0;
            text-align: center;
            color: #94a3b8;
        }
        .copyright {
            font-size: 1rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1e293b;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 40px 20px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            article, .form-section {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
