* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #16213e, #0f3460);
            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 a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e94560;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            font-size: 2.5rem;
        }
        .logo a:hover {
            color: #ff9a76;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00b4d8;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .nav-links li a:hover {
            background: rgba(233, 69, 96, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e94560;
        }
        #nav-toggle {
            display: none;
        }
        main {
            padding: 40px 0;
            background: #1a1a2e;
        }
        article {
            background: #16213e;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #e94560;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #00b4d8;
            margin-top: 40px;
            margin-bottom: 15px;
            border-left: 5px solid #e94560;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #90e0ef;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-align: justify;
            color: #d0d0d0;
        }
        .highlight {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid #e94560;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
            border: 3px solid #0f3460;
        }
        .form-section {
            background: #0f3460;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .form-section h2 {
            color: #ff9a76;
            border-left: none;
            text-align: center;
        }
        form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #00b4d8;
            border-radius: 8px;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #e94560;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #e94560, #ff9a76);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            justify-self: center;
            min-width: 200px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(233, 69, 96, 0.5);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: #0f3460;
            border-radius: 12px;
        }
        .web-link {
            background: #16213e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: scale(1.05);
            background: #1a1a2e;
        }
        .web-link a {
            font-size: 1.1rem;
            color: #90e0ef;
            display: block;
        }
        footer {
            background: #0f3460;
            padding: 30px 0;
            text-align: center;
            border-top: 5px solid #e94560;
            margin-top: 40px;
        }
        .copyright {
            font-size: 1rem;
            color: #aaa;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 15px;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f3460;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
                gap: 15px;
            }
            #nav-toggle:checked + .hamburger + .nav-links {
                display: flex;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article {
                padding: 25px;
            }
            form {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
        }
