* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        :root {
            --primary: #FF4500;
            --secondary: #1E90FF;
            --accent: #FFD700;
            --dark: #0A0E17;
            --light: #F5F5F5;
            --success: #32CD32;
            --danger: #DC143C;
            --shadow: 0 6px 20px rgba(0,0,0,0.18);
            --transition: all 0.3s ease-in-out;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.8;
            padding-bottom: 120px;
            font-size: 16px;
            background-image: radial-gradient(circle at 15% 25%, rgba(10,14,23,0.97) 0%, rgba(0,0,0,0.99) 100%);
        }
        .container {
            width: 94%;
            max-width: 1450px;
            margin: 0 auto;
        }
        header {
            background: linear-gradient(135deg, #0A0E17, #1F2937);
            padding: 22px 0;
            box-shadow: 0 4px 20px rgba(255, 69, 0, 0.18);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 69, 0, 0.25);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 0.4px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            gap: 15px;
        }
        .logo i {
            color: var(--accent);
            font-size: 2.1rem;
            transform: rotate(20deg);
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: block;
            width: auto;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 45px;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.15rem;
            transition: var(--transition);
            position: relative;
            padding: 6px 0;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
            border-radius: 3px;
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 15px 30px;
            border-radius: 45px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }
        .btn-download {
            background: linear-gradient(135deg, var(--primary), #E63946);
            color: white;
            margin-right: 18px;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .btn-download:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.35);
            background: linear-gradient(135deg, #E03131, #D92D20);
        }
        .btn-login {
            background-color: rgba(255,255,255,0.09);
            color: var(--light);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-login:hover {
            background-color: rgba(255,255,255,0.17);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 2.3rem;
            color: var(--light);
            cursor: pointer;
            background: none;
            border: none;
        }
        .hero {
            padding: 110px 0 90px;
            text-align: center;
            background: url('https://source.unsplash.com/random/1920x1080/?space,chennai,arena,sci-fi') no-repeat center center;
            background-size: cover;
            background-blend-mode: overlay;
            background-color: rgba(10,14,23,0.88);
            border-radius: 0 0 70px 70px;
            margin-bottom: 90px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.18) 0%, transparent 75%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-tagline {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 25px;
            font-weight: 500;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .hero h1 {
            font-size: 4.2rem;
            color: var(--light);
            margin-bottom: 35px;
            text-shadow: 0 0 25px rgba(255, 69, 0, 0.35);
            line-height: 1.35;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero h1 span {
            color: var(--accent);
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.45);
        }
        .hero p {
            font-size: 1.45rem;
            max-width: 1100px;
            margin: 0 auto 55px;
            color: var(--light);
            text-align: center;
            line-height: 1.9;
            opacity: 0.92;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
            max-width: 650px;
            margin: 0 auto;
        }
        .wiki-header {
            background-color: #1F2937;
            border-radius: 35px;
            padding: 55px;
            box-shadow: var(--shadow);
            margin-bottom: 80px;
            border-left: 12px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        .wiki-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(50%, -50%);
            z-index: 0;
        }
        .wiki-header-content {
            position: relative;
            z-index: 1;
        }
        .wiki-header .infobox {
            float: right;
            width: 360px;
            background-color: #0A0E17;
            border-radius: 25px;
            padding: 35px;
            margin-left: 45px;
            margin-bottom: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            border: 1px solid rgba(255, 69, 0, 0.25);
            position: relative;
        }
        .infobox::after {
            content: '⚔️';
            position: absolute;
            top: -18px;
            right: -18px;
            font-size: 45px;
            transform: rotate(35deg);
        }
        .infobox h3 {
            color: var(--accent);
            font-size: 1.6rem;
            margin-bottom: 30px;
            padding-bottom: 18px;
            border-bottom: 2px solid rgba(255, 69, 0, 0.3);
            text-align: center;
            font-weight: 700;
        }
        .infobox table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 15px;
        }
        .infobox td {
            padding: 14px 12px;
            font-size: 1.05rem;
        }
        .infobox td:first-child {
            font-weight: 600;
            color: var(--light);
            width: 48%;
            text-align: left;
            border-right: 2px solid rgba(30, 144, 255, 0.3);
            padding-right: 18px;
        }
        .infobox td:last-child {
            color: var(--secondary);
            padding-left: 18px;
            text-align: left;
        }
        .wiki-header h2 {
            color: var(--light);
            font-size: 2.6rem;
            margin-bottom: 35px;
            padding-bottom: 22px;
            border-bottom: 3px solid rgba(255,215,0,0.25);
            position: relative;
        }
        .wiki-header h2::after {
            content: '';
            position: absolute;
            width: 130px;
            height: 3px;
            background-color: var(--accent);
            bottom: -3px;
            left: 0;
        }
        .wiki-header p {
            margin-bottom: 32px;
            font-size: 1.15rem;
            line-height: 2.1;
            color: var(--light);
            opacity: 0.95;
        }
        .wiki-header p strong {
            color: var(--accent);
            font-weight: 600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 55px;
            margin-bottom: 90px;
        }
        .content-section {
            background-color: #1F2937;
            border-radius: 35px;
            padding: 55px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 69, 0, 0.15);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 45px;
        }
        .sidebar-widget {
            background-color: #1F2937;
            border-radius: 30px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 69, 0, 0.15);
            transition: var(--transition);
        }
        .sidebar-widget:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(255, 69, 0, 0.18);
        }
        h2 {
            color: var(--light);
            font-size: 2.3rem;
            margin-bottom: 40px;
            padding-bottom: 18px;
            border-bottom: 3px solid rgba(255,215,0,0.25);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 110px;
            height: 3px;
            background-color: var(--accent);
            bottom: -3px;
            left: 0;
        }
        h3 {
            color: var(--accent);
            font-size: 1.8rem;
            margin: 55px 0 30px;
            padding-left: 25px;
            border-left: 6px solid var(--secondary);
            font-weight: 600;
        }
        h4 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin: 40px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px dashed rgba(255,215,0,0.35);
            font-weight: 600;
        }
        p {
            margin-bottom: 30px;
            text-align: justify;
            font-size: 1.12rem;
            line-height: 2.05;
            color: var(--light);
            opacity: 0.95;
        }
        p strong {
            color: var(--accent);
            font-weight: 600;
        }
        .highlight {
            background-color: rgba(255, 69, 0, 0.09);
            border-left: 7px solid var(--primary);
            padding: 30px;
            border-radius: 0 20px 20px 0;
            margin: 45px 0;
            border-top: 1px solid rgba(255, 69, 0, 0.25);
            border-bottom: 1px solid rgba(255, 69, 0, 0.25);
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 12px;
        }
        .fun-fact {
            background-color: rgba(255,215,0,0.09);
            border-left: 7px solid var(--accent);
            padding: 30px;
            border-radius: 0 20px 20px 0;
            margin: 45px 0;
            border-top: 1px solid rgba(255,215,0,0.25);
            border-bottom: 1px solid rgba(255,215,0,0.25);
        }
        .fun-fact strong {
            color: var(--accent);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 12px;
        }
        ul, ol {
            margin: 0 0 35px 45px;
            color: var(--light);
            opacity: 0.95;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 22px;
            font-size: 1.12rem;
            line-height: 2.0;
            padding-left: 12px;
        }
        li strong {
            color: var(--accent);
            font-weight: 600;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 55px 0;
        }
        .feature-card {
            background-color: #0A0E17;
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--primary);
            border-bottom: 1px solid rgba(255, 69, 0, 0.25);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.18);
            border-top-color: var(--accent);
        }
        .feature-card i {
            font-size: 3.8rem;
            color: var(--accent);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        .feature-card:hover i {
            transform: scale(1.15) rotate(7deg);
            color: var(--primary);
        }
        .feature-card h4 {
            font-size: 1.5rem;
            margin-bottom: 22px;
            color: var(--light);
            border-bottom: none;
            padding-bottom: 0;
        }
        .feature-card p {
            text-align: center;
            font-size: 1.05rem;
            margin-bottom: 0;
            opacity: 0.9;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 55px 0;
        }
        .screenshot {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: var(--transition);
            border: 1px solid rgba(255, 69, 0, 0.25);
        }
        .screenshot:hover {
            transform: scale(1.07);
            box-shadow: 0 15px 35px rgba(255, 69, 0, 0.25);
        }
        .screenshot img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        .screenshot:hover img {
            transform: scale(1.1);
        }
        .community-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 35px;
            margin: 55px 0;
        }
        .stat-card {
            text-align: center;
            padding: 35px;
            background-color: #0A0E17;
            border-radius: 25px;
            width: 220px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 69, 0, 0.25);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
            border-color: var(--accent);
        }
        .stat-card .number {
            font-size: 3.3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 12px;
            line-height: 1.3;
            text-shadow: 0 0 20px rgba(255,215,0,0.25);
        }
        .stat-card .label {
            font-size: 1.1rem;
            color: var(--light);
            font-weight: 500;
            opacity: 0.9;
        }
        .sidebar-widget h3 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: var(--accent);
            border-left: 5px solid var(--secondary);
            padding-left: 18px;
            margin-top: 0;
        }
        .game-info-list {
            list-style: none;
            margin: 0;
        }
        .game-info-list li {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.15);
            margin-bottom: 0;
        }
        .game-info-list li:last-child {
            border-bottom: none;
        }
        .game-info-list .label {
            font-weight: 600;
            color: var(--light);
        }
        .game-info-list .value {
            color: var(--secondary);
            font-weight: 500;
        }
        .download-widget {
            background: linear-gradient(135deg, #0A0E17, #1F2937);
            color: white;
            text-align: center;
            border-radius: 30px;
            padding: 45px 35px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 69, 0, 0.25);
            position: relative;
            overflow: hidden;
        }
        .download-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at bottom right, rgba(255, 69, 0, 0.15) 0%, transparent 65%);
            z-index: 1;
        }
        .download-widget-content {
            position: relative;
            z-index: 2;
        }
        .download-widget h3 {
            color: var(--accent);
            border-left-color: var(--accent);
            margin-bottom: 30px;
            padding-left: 18px;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
        .download-widget p {
            text-align: center;
            margin-bottom: 35px;
            color: var(--light);
            opacity: 0.9;
        }
        .download-btn {
            background: linear-gradient(135deg, var(--primary), #E63946);
            color: white;
            width: 100%;
            padding: 18px;
            border-radius: 45px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            font-size: 1.15rem;
            border: 1px solid rgba(255,255,255,0.15);
            margin-bottom: 20px;
        }
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.35);
            background: linear-gradient(135deg, #E03131, #D92D20);
        }
        .download-widget .compatibility {
            margin-top: 25px;
            font-size: 1rem;
            color: var(--light);
            opacity: 0.85;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .tag {
            background-color: rgba(255,255,255,0.09);
            padding: 14px 22px;
            border-radius: 35px;
            font-size: 1.05rem;
            text-decoration: none;
            color: var(--light);
            transition: var(--transition);
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(255, 69, 0, 0.25);
            border-color: var(--primary);
        }
        .category-list {
            list-style: none;
            margin: 0;
        }
        .category-list li {
            margin-bottom: 22px;
            padding-left: 0;
        }
        .category-list a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 1.15rem;
            transition: var(--transition);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .category-list a:hover {
            color: var(--accent);
            padding-left: 12px;
        }
        .category-list a i {
            font-size: 0.9rem;
            opacity: 0.75;
        }
        .wiki-section {
            margin-bottom: 80px;
        }
        .wiki-section:last-child {
            margin-bottom: 0;
        }
        .quote {
            font-style: italic;
            color: var(--secondary);
            padding: 0 30px;
            border-left: 5px solid var(--accent);
            margin: 45px 0;
            font-size: 1.2rem;
            line-height: 2.1;
            background-color: rgba(255,215,0,0.06);
            padding: 30px;
            border-radius: 0 20px 20px 0;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 18px;
            font-size: 1.05rem;
            color: var(--light);
            opacity: 0.85;
            font-style: normal;
        }
        .reference {
            font-size: 1rem;
            color: var(--secondary);
            vertical-align: super;
            margin-left: 4px;
        }
        .table-of-contents {
            background-color: #0A0E17;
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 55px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 69, 0, 0.15);
        }
        .table-of-contents h3 {
            color: var(--accent);
            margin-top: 0;
            margin-bottom: 30px;
            border-left: 5px solid var(--secondary);
            padding-left: 18px;
        }
        .toc-list {
            list-style: none;
            margin: 0;
            columns: 2;
            -webkit-columns: 2;
            -moz-columns: 2;
            gap: 25px;
        }
        .toc-list li {
            margin-bottom: 18px;
            padding-left: 25px;
            position: relative;
        }
        .toc-list li::before {
            content: '⚡';
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
            transition: var(--transition);
        }
        .toc-list li:hover::before {
            transform: translateX(7px);
        }
        .toc-list a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .toc-list a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        footer {
            background-color: #0A0E17;
            color: white;
            padding: 90px 0 60px;
            border-radius: 70px 70px 0 0;
            border-top: 1px solid rgba(255, 69, 0, 0.25);
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 55px;
            margin-bottom: 70px;
        }
        .footer-col h3 {
            color: var(--accent);
            font-size: 1.7rem;
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 2px solid rgba(255, 69, 0, 0.3);
            border-left: none;
            padding-left: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 22px;
            padding-left: 0;
        }
        .footer-links a {
            color: var(--light);
            opacity: 0.85;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.12rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            opacity: 1;
            padding-left: 12px;
        }
        .footer-links a i {
            font-size: 0.9rem;
            opacity: 0.75;
        }
        .recommendation {
            background-color: rgba(255, 69, 0, 0.09);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 60px;
            border-left: 6px solid var(--primary);
            border: 1px solid rgba(255, 69, 0, 0.15);
        }
        .recommendation h4 {
            color: var(--accent);
            font-size: 1.6rem;
            margin-bottom: 25px;
            border-bottom: none;
            padding-bottom: 0;
        }
        .recommendation p {
            color: var(--light);
            margin-bottom: 30px;
            opacity: 0.95;
        }
        .recommendation a {
            color: var(--secondary);
            text-decoration: underline;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.15rem;
        }
        .recommendation a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 45px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.1rem;
            color: var(--light);
            opacity: 0.75;
            line-height: 2.1;
        }
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .copyright a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .wiki-header .infobox {
                float: none;
                width: 100%;
                margin-left: 0;
                margin-bottom: 45px;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            .toc-list {
                columns: 1;
                -webkit-columns: 1;
                -moz-columns: 1;
            }
            .hero h1 {
                font-size: 3.7rem;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 35px;
            }
            .hero {
                padding: 90px 0 70px;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .content-section {
                padding: 45px;
            }
            .wiki-header {
                padding: 45px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                justify-content: space-between;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 30px;
                background-color: #0A0E17;
                border-radius: 20px;
                padding: 25px;
                border: 1px solid rgba(255, 69, 0, 0.25);
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 30px;
                padding: 15px 0;
            }
            nav a {
                font-size: 1.2rem;
                display: block;
                padding: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                display: none;
            }
            .mobile-buttons {
                display: flex;
                gap: 18px;
                margin-top: 30px;
                width: 100%;
                justify-content: center;
            }
            .mobile-buttons .btn {
                flex: 1;
                margin-right: 0;
                padding: 14px 18px;
                font-size: 1.05rem;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .stat-card {
                width: 100%;
                max-width: 380px;
            }
            .wiki-header {
                padding: 35px;
            }
            .content-section {
                padding: 40px;
            }
            .sidebar-widget {
                padding: 35px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.9rem;
            }
            .logo i {
                font-size: 1.8rem;
            }
            .hero {
                padding: 70px 0 60px;
                border-radius: 0 0 40px 40px;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 18px;
            }
            .btn {
                width: 100%;
                margin-bottom: 0;
                padding: 14px 22px;
            }
            .wiki-header {
                padding: 30px;
            }
            .content-section {
                padding: 35px;
            }
            .screenshot-gallery {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .copyright {
                font-size: 1rem;
            }
            .table-of-contents {
                padding: 30px;
            }
            .highlight, .fun-fact, .quote {
                padding: 25px;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            transition: opacity 0.6s ease;
            background-color: rgba(0,0,0,0.35);
        }
        img.loading {
            opacity: 0;
        }
        img.loaded {
            opacity: 1;
        }
        html {
            scroll-behavior: smooth;
        }
        :focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
            border-radius: 5px;
        }
        ::-webkit-scrollbar {
            width: 14px;
            height: 14px;
        }
        ::-webkit-scrollbar-track {
            background: #0A0E17;
        }
        ::-webkit-scrollbar-thumb {
            background: #FF4500;
            border-radius: 7px;
            border: 3px solid #0A0E17;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #FFD700;
        }
