        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #f0f0f0;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9999;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            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: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #4ecdc4;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255, 107, 107, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0f0f0;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 15px;
            background: #1a1a2e;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #4ecdc4;
        }
        main {
            padding: 40px 0;
        }
        article {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #4ecdc4;
            margin: 40px 0 20px;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffd166;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 800px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .form-section {
            background: rgba(22, 33, 62, 0.9);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 10px;
            font-weight: bold;
            color: #4ecdc4;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #ff6b6b;
            outline: none;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(135deg, #ff6b6b, #ff9999);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 20px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ffd166;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ff6b6b;
        }
        .internal-links {
            background: rgba(26, 26, 46, 0.9);
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .internal-links h2 {
            text-align: center;
            border: none;
            margin-bottom: 30px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 107, 107, 0.1);
            padding: 20px;
            border-radius: 10px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 107, 107, 0.2);
        }
        .web-link a {
            color: #f0f0f0;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
        }
        footer {
            text-align: center;
            padding: 30px;
            background: #1a1a2e;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 2px solid #ff6b6b;
        }
        footer a {
            color: #4ecdc4;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .nav-mobile {
                width: 100%;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
