        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #0a1e3a;
            --accent-gold: #ffcc00;
            --accent-silver: #c0c0c0;
            --accent-bronze: #cd7f32;
            --text-light: #f5f7fa;
            --text-gray: #b0b8c5;
            --bg-dark: #050e1a;
            --bg-card: #0f1c30;
            --border-color: #1e3250;
            --success-green: #2ecc71;
            --warning-orange: #f39c12;
            --danger-red: #e74c3c;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffea80;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
            color: var(--primary-blue);
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
            color: var(--primary-blue);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--accent-gold);
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .card {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .highlight {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .site-header {
            background-color: rgba(10, 30, 58, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo span {
            color: var(--text-light);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent-gold);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 70px);
            background-color: var(--primary-blue);
            flex-direction: column;
            padding: 30px;
            gap: 20px;
            transition: right 0.4s ease-in-out;
            z-index: 999;
            border-left: 2px solid var(--border-color);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            color: var(--text-light);
            font-size: 1.2rem;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: block;
        }
        .nav-mobile a:hover {
            color: var(--accent-gold);
            padding-left: 10px;
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .hero {
            background: linear-gradient(rgba(5, 14, 26, 0.9), rgba(10, 30, 58, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text-gray);
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        .stat-box {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            min-width: 180px;
            border: 1px solid var(--border-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
        }
        .stat-label {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .search-section {
            background-color: var(--bg-card);
            padding: 40px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .search-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-light);
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        .search-btn {
            padding: 0 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            white-space: nowrap;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.15rem;
            color: var(--text-light);
        }
        .article-content h1, .article-content h2, .article-content h3 {
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-gold);
            padding-left: 20px;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .article-content strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .info-box {
            background-color: var(--bg-card);
            border-left: 5px solid var(--accent-gold);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .rank-visual {
            width: 100%;
            height: 400px;
            background: linear-gradient(to bottom, #cd7f32, #c0c0c0, #ffcc00, #4a90e2, #9b59b6, #e74c3c);
            border-radius: 12px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 2rem;
            color: var(--primary-blue);
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
        .rank-visual::before {
            content: 'Brawlhalla Ranked Spectrum: Tin → Bronze → Silver → Gold → Platinum → Diamond → Valhallan';
            text-align: center;
            padding: 20px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .toc {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .toc-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .toc-list {
            list-style: none;
        }
        .toc-list li {
            margin-bottom: 12px;
            padding-left: 15px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-list li:hover {
            border-left-color: var(--accent-gold);
            padding-left: 20px;
        }
        .toc-list a {
            color: var(--text-light);
            display: block;
        }
        .toc-list a:hover {
            color: var(--accent-gold);
        }
        .author-card {
            text-align: center;
            padding: 30px;
        }
        .author-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 4px solid var(--accent-gold);
            object-fit: cover;
        }
        .author-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .author-bio {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .interaction-section {
            background-color: var(--bg-card);
            padding: 50px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .rating-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-label {
            font-weight: bold;
            color: var(--text-light);
        }
        .form-input, .form-textarea {
            padding: 16px 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            align-self: flex-start;
            padding: 16px 40px;
            font-size: 1.1rem;
        }
        .footer-links {
            background-color: var(--primary-blue);
            padding: 60px 0 40px;
            border-top: 2px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: var(--accent-gold);
            background-color: rgba(255, 204, 0, 0.05);
        }
        .footer-main {
            background-color: var(--bg-dark);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 20px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: var(--bg-card);
            border-radius: 50%;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            transform: translateY(-5px);
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mt-40 { margin-top: 40px; }
        .hidden { display: none; }
