* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #f72585;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 26, 46, 0.95);
            border-bottom: 3px solid #f72585;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #4cc9f0;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
        }
        .logo a:hover {
            color: #4cc9f0;
            transform: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: #4cc9f0;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        #menu-toggle {
            display: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(76, 201, 240, 0.1);
        }
        .nav-links a:hover {
            background: rgba(247, 37, 133, 0.2);
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
            width: 100%;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4cc9f0;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(76, 201, 240, 0.2);
        }
        h1 {
            font-size: 3.5rem;
            color: #f72585;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #4cc9f0;
            margin: 40px 0 20px;
            border-left: 5px solid #f72585;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #9d4edd;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(247, 37, 133, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #f72585;
            margin: 20px 0;
        }
        b {
            color: #9d4edd;
            font-weight: 800;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #4cc9f0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .form-section {
            background: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #9d4edd;
        }
        .form-section h3 {
            color: #4cc9f0;
            margin-bottom: 20px;
        }
        form {
            display: grid;
            gap: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #4cc9f0;
            background: rgba(255, 255, 255, 0.1);
            color: #e6e6e6;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f72585;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #f72585, #9d4edd);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(247, 37, 133, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input {
            width: auto;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ffd700;
            cursor: pointer;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(76, 201, 240, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(247, 37, 133, 0.2);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
        }
        footer {
            background: rgba(22, 33, 62, 0.95);
            padding: 40px 0;
            border-top: 3px solid #9d4edd;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .nav-links { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(26, 26, 46, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #4cc9f0;
            }
            #menu-toggle:checked + .hamburger + .nav-links {
                display: flex;
            }
            .hamburger span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            #menu-toggle:checked + .hamburger span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }
            #menu-toggle:checked + .hamburger span:nth-child(2) {
                opacity: 0;
            }
            #menu-toggle:checked + .hamburger span:nth-child(3) {
                transform: rotate(-45deg) translate(-5px, -6px);
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .breadcrumb {
                margin-top: 10px;
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            p { font-size: 1rem; }
            .form-section { padding: 20px; }
            .web-links { grid-template-columns: 1fr; }
        }
