* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1c7ed6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            border-bottom: 2px solid #2a3240;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ff6b6b;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #b0b7c3;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #2a3240;
            color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8a94a6;
            border-bottom: 1px solid #2a3240;
        }
        .breadcrumb a {
            color: #8a94a6;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .search-container {
            background: #1a1f2e;
            padding: 40px 0;
            margin: 20px 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-container h2 {
            margin-bottom: 20px;
            color: #4dabf7;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2a3240;
            border-radius: 8px 0 0 8px;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #4dabf7, #1c7ed6);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-button:hover {
            opacity: 0.9;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: #1a1f2e;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #4dabf7;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ff6b6b;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3240;
        }
        h3 {
            font-size: 1.5rem;
            color: #69db7c;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a3240;
            border-left: 5px solid #4dabf7;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .rank-chart {
            width: 100%;
            overflow-x: auto;
            margin: 30px 0;
            background: #0f1419;
            border-radius: 8px;
            padding: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #2a3240;
        }
        th {
            background-color: #2a3240;
            color: #4dabf7;
            font-weight: 700;
        }
        tr:hover {
            background-color: #2a3240;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #2a3240;
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #8a94a6;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .interaction {
            background: #1a1f2e;
            border-radius: 10px;
            padding: 40px;
            margin-top: 40px;
        }
        .rating-container, .comment-container {
            margin-bottom: 40px;
        }
        .rating-container h3, .comment-container h3 {
            color: #ffd43b;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #8a94a6;
            cursor: pointer;
            margin: 0 5px;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #2a3240;
            border-radius: 8px;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
            margin-bottom: 15px;
        }
        .submit-button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #69db7c, #37b24d);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .submit-button:hover {
            opacity: 0.9;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        @media (min-width: 768px) {
            .web-links {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .web-link {
            background: #1a1f2e;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #2a3240;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #4dabf7;
        }
        .web-link a {
            font-weight: 600;
            color: #b0b7c3;
        }
        .web-link a:hover {
            color: #4dabf7;
        }
        footer {
            background: #0a0d12;
            padding: 40px 0;
            border-top: 2px solid #2a3240;
            text-align: center;
        }
        .copyright {
            color: #8a94a6;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a1f2e;
                flex-direction: column;
                padding: 20px;
                border-top: 2px solid #2a3240;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .interaction {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-button {
                border-radius: 8px;
            }
        }
