        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #4cc9f0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f72585;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            border-bottom: 2px solid #4cc9f0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #4cc9f0, #f72585);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffd166;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav.desktop-nav a:hover {
            background: rgba(76, 201, 240, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(22, 33, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #4cc9f0;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background: rgba(76, 201, 240, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #b8b8b8;
        }
        .breadcrumb a {
            color: #4cc9f0;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(30, 40, 70, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(76, 201, 240, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd166;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #4cc9f0;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #f72585;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffd166;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(247, 37, 133, 0.15);
            border-left: 5px solid #f72585;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #4cc9f0;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .image-caption {
            font-style: italic;
            color: #b8b8b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .search-section {
            background: rgba(22, 33, 62, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .search-section h2 {
            border: none;
            margin-top: 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #4cc9f0;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            padding: 15px 30px;
            background: linear-gradient(to right, #4cc9f0, #4361ee);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-button:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #3aa8d0, #2a4fdb);
        }
        .rating-section {
            background: rgba(22, 33, 62, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            margin: 20px 0;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: transform 0.2s ease;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            max-width: 500px;
            margin: 20px auto 0;
        }
        .rating-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #4cc9f0;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            outline: none;
        }
        .rating-submit {
            padding: 15px 30px;
            background: linear-gradient(to right, #f72585, #b5179e);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-submit:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #d1146f, #8a1280);
        }
        .comments-section {
            background: rgba(22, 33, 62, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .comment-form {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            border: 2px solid #4cc9f0;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-submit {
            padding: 15px 30px;
            background: linear-gradient(to right, #ffd166, #ff9e00);
            color: #16213e;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
            justify-self: start;
        }
        .comment-submit:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #e6b951, #e68a00);
        }
        .comment-list {
            display: grid;
            gap: 25px;
        }
        .comment {
            background: rgba(30, 40, 70, 0.9);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #4cc9f0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #b8b8b8;
            font-size: 0.9rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 0;
        }
        .web-link {
            background: rgba(30, 40, 70, 0.7);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            color: #ffd166;
        }
        .web-link a:hover {
            color: #f72585;
        }
        footer {
            background: rgba(10, 15, 35, 0.95);
            border-top: 2px solid #f72585;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            color: #b8b8b8;
            font-size: 0.95rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(76, 201, 240, 0.3);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 12px 0; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 15px; }
            .search-button { border-radius: 50px; width: 100%; }
            .footer-links { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article, .search-section, .rating-section, .comments-section { padding: 25px 20px; }
            .stars { font-size: 2rem; }
        }
