* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #f59e0b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #fbbf24;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: #60a5fa;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #475569;
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.75rem;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #475569;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #60a5fa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        h1 {
            color: #fbbf24;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #f59e0b;
            padding-left: 1rem;
        }
        h2 {
            color: #60a5fa;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            color: #cbd5e1;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #fbbf24;
        }
        em {
            color: #86efac;
        }
        .highlight {
            background-color: #374151;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #f59e0b;
            margin: 2rem 0;
        }
        .tier-list-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background-color: #0f172a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .tier-list-table th, .tier-list-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #334155;
        }
        .tier-list-table th {
            background-color: #1e40af;
            color: white;
            font-weight: 700;
        }
        .tier-list-table tr:hover {
            background-color: #2d3748;
        }
        .tier-s {
            color: #ff6b6b;
            font-weight: 800;
        }
        .tier-a {
            color: #ffa94d;
            font-weight: 700;
        }
        .tier-b {
            color: #ffe66d;
            font-weight: 600;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #475569;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            transition: transform 0.4s ease;
        }
        .responsive-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #0f172a;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 2px solid #334155;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #fbbf24;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
            box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            color: #1e293b;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #d97706, #f59e0b);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(245, 158, 11, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #1e293b;
            border-radius: 12px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #60a5fa;
        }
        .web-link a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #fbbf24;
        }
        footer {
            background-color: #0f172a;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #334155;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #60a5fa;
        }
        .copyright {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 1.8rem; }
            h1 { font-size: 2rem; }
            .tier-list-table th, .tier-list-table td { padding: 0.8rem; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.7rem; }
            h2 { font-size: 1.5rem; }
            .header-container { flex-direction: column; gap: 1rem; }
            .logo a { font-size: 1.8rem; }
        }
