        * {
            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;
            overflow-x: hidden;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            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;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(0, 180, 216, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.05);
            margin-top: 10px;
            border-radius: 5px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #00b4d8;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        .content {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 15px;
            height: fit-content;
        }
        h1 {
            font-size: 3rem;
            color: #4ecdc4;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff6b6b;
            margin: 30px 0 15px;
            border-bottom: 3px solid #00b4d8;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #90e0ef;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.2);
            padding: 15px;
            border-left: 5px solid #00b4d8;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        form {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin: 10px 0 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #00b4d8;
            border-radius: 5px;
            color: #e6e6e6;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: block;
            width: 100%;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffd700;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 0;
            border-top: 2px solid #00b4d8;
            border-bottom: 2px solid #00b4d8;
            margin-top: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: scale(1.05);
            background: rgba(0, 180, 216, 0.2);
        }
        footer {
            text-align: center;
            padding: 30px 0;
            background: rgba(0, 0, 0, 0.9);
            margin-top: 40px;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                padding: 20px;
                display: none;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 2rem;
            }
        }
        .structured-data {
            display: none;
        }
