:root {
            --primary: #FF4D94;
            --secondary: #00CCFF;
            --accent: #FFD700;
            --dark: #0A0A2A;
            --light: #F5F7FF;
            --gray: #6C757D;
            --success: #20C997;
            --danger: #DC3545;
            --shadow: 0 8px 25px rgba(0, 10, 50, 0.15);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0A0A2A 0%, #1A1A3A 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 77, 148, 0.5);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 16px;
            border-radius: 30px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background: rgba(255, 77, 148, 0.2);
            color: var(--primary);
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--gray);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(255, 77, 148, 0.15) 0%, transparent 50%);
            z-index: -1;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #FF4D94, #00CCFF, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #CCD6F6;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--light);
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 25px rgba(255, 77, 148, 0.5);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            color: white;
            padding: 12px 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
        }
        main {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 50px;
            margin: 40px auto;
            position: relative;
        }
        .content-section {
            margin-bottom: 60px;
            border-bottom: 2px dashed #E9ECEF;
            padding-bottom: 50px;
        }
        h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
        }
        h3 {
            font-size: 1.9rem;
            color: #1A1A3A;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--secondary);
        }
        h4 {
            font-size: 1.5rem;
            color: #2D2D5A;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 77, 148, 0.1), rgba(0, 204, 255, 0.1));
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 30px 0;
            font-size: 1.15rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .game-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--radius);
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 3px solid var(--accent);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .link-card {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
            border-radius: var(--radius);
            padding: 25px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }
        .link-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .link-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--secondary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        .rating-section {
            background: #F8F9FA;
            border-radius: var(--radius);
            padding: 40px;
            margin: 50px 0;
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            margin: 25px 0;
            color: #FFD700;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .comment-form, .rating-form {
            max-width: 800px;
            margin: 40px auto;
            background: white;
            padding: 35px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #DEE2E6;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.2);
        }
        button[type="submit"] {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 77, 148, 0.4);
        }
        .update-time {
            background: var(--dark);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        footer {
            background: #0A0A2A;
            color: var(--light);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            color: var(--light);
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #CCD6F6;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        friend-link a {
            color: var(--secondary);
            font-weight: bold;
            text-decoration: none;
            font-size: 1.1rem;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8A8FB8;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            main { padding: 35px; }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 42, 0.98);
                backdrop-filter: blur(15px);
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                border-top: 2px solid var(--primary);
            }
            nav.active ul {
                display: flex;
            }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            main { padding: 25px; margin: 20px auto; }
            .hero { padding: 40px 0 20px; }
            .link-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 35px; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .hero p { font-size: 1.1rem; }
            .search-box input { padding: 15px 20px; }
            .comment-form, .rating-form { padding: 25px; }
            .stars { font-size: 2rem; }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
            vertical-align: middle;
        }
        .key-term {
            background: linear-gradient(90deg, rgba(0, 204, 255, 0.1), transparent);
            padding: 3px 10px;
            border-radius: 5px;
            font-weight: bold;
            color: var(--secondary);
            border-left: 3px solid var(--secondary);
        }
