﻿
        :root {
            --primary: #ffffff;
            --secondary: #e0e0e0;
            --accent: #8a8a8a;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #f5f5f5;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --success: #4caf50;
            --error: #f44336;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Orbitron', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* 鍔ㄦ€佽儗鏅鍣?*/
        .dynamic-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        /* 鍑犱綍褰㈢姸鑳屾櫙 */
        .bg-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .bg-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .bg-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation: float 15s ease-in-out infinite, pulse 8s ease-in-out infinite;
        }

        .bg-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 10%;
            right: 10%;
            animation: float 18s ease-in-out infinite reverse, pulse 10s ease-in-out infinite reverse;
        }

        .bg-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 80%;
            animation: float 12s ease-in-out infinite, pulse 6s ease-in-out infinite;
        }

        .bg-shape:nth-child(4) {
            width: 250px;
            height: 250px;
            bottom: 30%;
            left: 15%;
            animation: float 20s ease-in-out infinite reverse, pulse 12s ease-in-out infinite;
        }

        /* 娴佸姩绾挎潯鑳屾櫙 */
        .flow-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }

        .flow-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--light), transparent);
            height: 1px;
            width: 100%;
        }

        .flow-line:nth-child(1) {
            top: 20%;
            animation: flow 25s linear infinite;
        }

        .flow-line:nth-child(2) {
            top: 40%;
            animation: flow 30s linear infinite reverse;
        }

        .flow-line:nth-child(3) {
            top: 60%;
            animation: flow 20s linear infinite;
        }

        .flow-line:nth-child(4) {
            top: 80%;
            animation: flow 35s linear infinite reverse;
        }

        /* 鍔ㄦ€佺綉鏍艰儗鏅?*/
        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 40s linear infinite;
            opacity: 0.3;
        }

        /* 鍔ㄦ€佸厜绾挎晥鏋?*/
        .light-beams {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .light-beam {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform-origin: left;
        }

        .light-beam:nth-child(1) {
            top: 15%;
            transform: rotate(45deg);
            animation: beamMove 15s linear infinite;
        }

        .light-beam:nth-child(2) {
            top: 65%;
            transform: rotate(-30deg);
            animation: beamMove 20s linear infinite reverse;
        }

        .light-beam:nth-child(3) {
            top: 85%;
            transform: rotate(15deg);
            animation: beamMove 25s linear infinite;
        }

        /* 鍔ㄦ€佹尝绾规晥鏋?*/
        .ripple {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .ripple-circle {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: ripple 12s linear infinite;
        }

        .ripple-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .ripple-circle:nth-child(2) {
            width: 300px;
            height: 300px;
            top: 60%;
            left: 70%;
            animation-delay: 4s;
        }

        .ripple-circle:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 40%;
            left: 80%;
            animation-delay: 8s;
        }

        /* 鍔ㄧ敾鍏抽敭甯?*/
        @keyframes flow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        @keyframes beamMove {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        @keyframes ripple {
            0% { transform: scale(0.8); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.2; }
            100% { transform: scale(0.8); opacity: 0.5; }
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 绮掑瓙鑳屾櫙 */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* 瀵艰埅鏍?*/
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(15px);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.1rem;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
            font-size: 1rem;
            border: none;
        }

        .btn-primary {
            background: var(--glass);
            backdrop-filter: blur(10px);
            color: var(--primary);
            border: 1px solid var(--glass-border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-download {
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
            backdrop-filter: blur(10px);
            color: var(--primary);
            border: 1px solid var(--glass-border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-download::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn-download:hover::after {
            left: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }

        /* 妯℃€佹鍩虹鏍峰紡 */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            width: 100%;
            max-width: 450px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            transform: translateY(30px);
            transition: var(--transition);
            position: relative;
        }

        .modal.active .modal-container {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-header h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .modal-header p {
            color: rgba(245, 245, 245, 0.7);
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 500;
            color: var(--light);
        }

        .form-control {
            padding: 15px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--glass-border);
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-control.error {
            border-color: var(--error);
        }

        .form-control.success {
            border-color: var(--success);
        }

        .form-message {
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .form-message.error {
            color: var(--error);
            display: block;
        }

        .form-message.success {
            color: var(--success);
            display: block;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 10px 0;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(245, 245, 245, 0.7);
            font-size: 0.9rem;
        }

        .remember-me input {
            accent-color: var(--primary);
        }

        .forgot-password {
            color: rgba(245, 245, 245, 0.7);
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .forgot-password:hover {
            color: var(--primary);
        }

        .modal-btn {
            padding: 15px;
            border-radius: 10px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .modal-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .modal-divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: rgba(245, 245, 245, 0.5);
        }

        .modal-divider::before,
        .modal-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(245, 245, 245, 0.2);
        }

        .modal-divider span {
            padding: 0 15px;
        }

        .social-login {
            display: flex;
            gap: 15px;
        }

        .social-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--glass-border);
            color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .modal-link {
            text-align: center;
            margin-top: 20px;
            color: rgba(245, 245, 245, 0.7);
            font-size: 0.9rem;
        }

        .modal-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .modal-link a:hover {
            text-decoration: underline;
        }

        /* 鎴愬姛娑堟伅鏍峰紡 */
        .success-message {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid var(--success);
            color: var(--success);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
            display: none;
        }

        /* 楠岃瘉鐮佺浉鍏虫牱寮?*/
        .verification-group {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .verification-input {
            flex: 1;
        }

        .verification-btn {
            padding: 15px 20px;
            border-radius: 10px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            min-width: 120px;
            margin-top: 24px; /* 涓庤緭鍏ユ瀵归綈 */
        }

        .verification-btn:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .verification-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* 鑻遍泟鍖哄煙 - 绉诲姩绔紭鍖?*/
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            text-align: center;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 800;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: rgba(245, 245, 245, 0.8);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btns .btn {
            flex: 1;
            min-width: 160px;
            max-width: 200px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            flex-direction: column;
            text-align: center;
            min-width: 120px;
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(245, 245, 245, 0.7);
            margin-top: 5px;
        }

        .hero-visual {
            display: none;
        }

        /* 娓告垙灞曠ず鍖?*/
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .section-title p {
            color: rgba(245, 245, 245, 0.7);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .game-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            filter: grayscale(30%) contrast(110%);
        }

        .game-card:hover img {
            transform: scale(1.1);
            filter: grayscale(0%) contrast(120%);
        }

        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
            color: white;
            transition: var(--transition);
        }

        .game-card:hover .game-overlay {
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
        }

        .game-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .game-overlay p {
            color: rgba(245, 245, 245, 0.8);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .game-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .game-tag {
            background: var(--glass);
            backdrop-filter: blur(10px);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            border: 1px solid var(--glass-border);
        }

        /* 涓嬭浇鍖哄煙 */
        .download-section {
            background: rgba(5, 5, 5, 0.7);
            position: relative;
            text-align: center;
        }

        .download-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .download-options {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .download-option {
            background: var(--glass);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px 20px;
            width: 100%;
            max-width: 350px;
            transition: var(--transition);
        }

        .download-option:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .download-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .download-option h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .download-option p {
            color: rgba(245, 245, 245, 0.7);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .system-requirements {
            margin-top: 25px;
            text-align: left;
            color: rgba(245, 245, 245, 0.7);
        }

        .system-requirements h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .system-requirements ul {
            list-style: none;
            padding-left: 0;
        }

        .system-requirements li {
            margin-bottom: 6px;
            position: relative;
            padding-left: 18px;
            font-size: 0.85rem;
        }

        .system-requirements li:before {
            content: "鈥?;
            color: var(--primary);
            position: absolute;
            left: 0;
        }

        /* 鍛樺伐鍚嶅崟鍖哄煙 */
        .staff-section {
            padding: 60px 0;
            background: rgba(5, 5, 5, 0.5);
            text-align: center;
        }

        .staff-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .staff-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .staff-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .staff-list {
            background: var(--glass);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .staff-list:hover {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .staff-member {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 600;
        }

        .staff-placeholder {
            font-size: 1rem;
            color: rgba(245, 245, 245, 0.6);
            font-style: italic;
        }

        /* 绉诲姩绔搷搴斿紡璁捐 */
        @media (max-width: 768px) {
            .container {
                width: 95%;
                padding: 0 15px;
            }
            
            .menu-toggle {
                display: block;
            }

            .nav-links, .nav-actions {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(15px);
                flex-direction: column;
                align-items: center;
                padding: 25px 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                transform: translateY(-150%);
                transition: var(--transition);
                z-index: 999;
            }

            .nav-links.active, .nav-actions.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 12px 0;
            }

            .nav-actions {
                top: 320px;
                gap: 15px;
            }

            .hero {
                padding-top: 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .hero-btns .btn {
                width: 100%;
                max-width: 280px;
            }

            .hero-stats {
                gap: 25px;
            }

            .stat {
                min-width: 100px;
            }

            .stat-value {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                margin-bottom: 40px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title h2::after {
                width: 60px;
            }

            .games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .game-card {
                height: 300px;
            }

            .game-overlay {
                padding: 15px;
            }

            .game-overlay h3 {
                font-size: 1.3rem;
            }

            .download-options {
                margin-top: 30px;
            }

            .download-option {
                padding: 25px 15px;
            }

            .download-icon {
                font-size: 3rem;
            }

            .modal-container {
                width: 90%;
                padding: 30px 20px;
                margin: 0 15px;
            }
            
            .form-options {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .social-login {
                flex-direction: column;
            }
            
            .verification-group {
                flex-direction: column;
                align-items: stretch;
            }
            
            .verification-btn {
                margin-top: 10px;
            }

            .staff-section {
                padding: 40px 0;
            }
            
            .staff-title {
                font-size: 1.5rem;
            }
            
            .staff-member {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat {
                min-width: 80px;
            }
            
            .stat-value {
                font-size: 1.5rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .logo i {
                font-size: 2rem;
            }
            
            .staff-member {
                font-size: 1.1rem;
            }
            
            .staff-list {
                padding: 20px;
            }
        }
    
