* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4d9fff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 15px 0;
            border-bottom: 3px solid #ffcc00;
            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: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 204, 0, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1a2e;
            padding: 20px;
            border-top: 2px solid #ffcc00;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px;
            border-bottom: 1px solid #333;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            padding: 30px 0;
            background: #0f0f23;
            border-radius: 10px;
            margin-top: 20px;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px dashed #ffcc00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #4d9fff;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #4d9fff;
        }
        h3 {
            font-size: 1.5rem;
            color: #00cc99;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #4d9fff;
            box-shadow: 0 0 20px rgba(77, 159, 255, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .form-section {
            background: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 2px solid #4d9fff;
        }
        .form-title {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00cc99;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #4d9fff;
            background: #0a0a1a;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #aaa;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #4d9fff, #00cc99);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 204, 153, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 40px 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
            margin-top: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .web-link a {
            font-size: 1.1rem;
            color: #4d9fff;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .form-section {
                padding: 15px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
