:root {
            --primary-blue: #0a2463;
            --accent-gold: #ffd700;
            --accent-silver: #c0c0c0;
            --accent-bronze: #cd7f32;
            --dark-bg: #121212;
            --card-bg: #1e1e1e;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --border-color: #333;
            --success-green: #4caf50;
            --warning-orange: #ff9800;
            --error-red: #f44336;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 36, 99, 0.95);
            border-bottom: 2px solid var(--accent-gold);
            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;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            color: var(--accent-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 215, 0, 0.15);
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-blue);
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 215, 0, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(30, 30, 30, 0.8);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-blue), #1a365d);
            padding: 40px 20px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .search-container h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 18px 20px;
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #ccc;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(to right, var(--accent-gold), #ffed4e);
            color: var(--primary-blue);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 215, 0, 0.4);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.4rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
            color: #fff;
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 18px;
            color: var(--accent-silver);
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: #ccc;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            background: rgba(10, 36, 99, 0.2);
            padding: 25px;
            border-left: 5px solid var(--accent-gold);
            border-radius: 0 10px 10px 0;
            margin-bottom: 35px;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(205, 127, 50, 0.1), rgba(10, 36, 99, 0.1));
            border-left: 5px solid var(--accent-bronze);
            padding: 22px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .pro-tip {
            background-color: rgba(76, 175, 80, 0.1);
            border-left: 5px solid var(--success-green);
            padding: 22px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .pro-tip::before {
            content: "💡 Pro Tip: ";
            font-weight: 800;
            color: var(--success-green);
        }
        emoji {
            font-style: normal;
            margin-right: 8px;
        }
        b, strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .rank-table th {
            background-color: var(--primary-blue);
            color: var(--accent-gold);
            padding: 20px;
            text-align: left;
            font-size: 1.2rem;
        }
        .rank-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .rank-table tr:last-child td {
            border-bottom: none;
        }
        .rank-table tr:hover {
            background-color: rgba(255, 215, 0, 0.05);
        }
        .tier-badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .tin { background-color: #8b8b8b; color: #333; }
        .bronze { background-color: var(--accent-bronze); color: #fff; }
        .silver { background-color: var(--accent-silver); color: #333; }
        .gold { background-color: var(--accent-gold); color: #333; }
        .platinum { background-color: #e5e4e2; color: #333; }
        .diamond { background-color: #b9f2ff; color: #333; }
        .valhallan { background: linear-gradient(45deg, #ffd700, #c0c0c0, #cd7f32); color: #000; }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid var(--primary-blue);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 1rem;
        }
        .interactive-ranks {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .rank-card {
            background: linear-gradient(145deg, #252525, #1a1a1a);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border-top: 5px solid;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        .rank-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .rank-card.tin { border-color: #8b8b8b; }
        .rank-card.bronze { border-color: var(--accent-bronze); }
        .rank-card.gold { border-color: var(--accent-gold); }
        .rank-card i {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .rank-card.tin i { color: #8b8b8b; }
        .rank-card.bronze i { color: var(--accent-bronze); }
        .rank-card.gold i { color: var(--accent-gold); }
        .user-interaction {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        .rating-container, .comment-container {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: var(--font-main);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            padding: 15px 35px;
            background: linear-gradient(to right, var(--primary-blue), #1e3a8a);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1e3a8a, var(--primary-blue));
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.4);
        }
        .web-links-section {
            background-color: #0d0d0d;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 18px;
            border-radius: 8px;
            border-left: 3px solid var(--primary-blue);
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(10, 36, 99, 0.2);
        }
        footer {
            background-color: #0a0a0a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 800px;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; padding: 18px; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            article { padding: 25px; }
            .interactive-ranks {
                grid-template-columns: 1fr;
            }
            .header-container, .breadcrumb ul {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 15px; }
            .intro { font-size: 1.1rem; padding: 20px; }
            .user-interaction { padding: 25px; }
        }
