* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2ecc71;
            --secondary: #2c3e50;
            --light: #ecf0f1;
            --dark: #1a2530;
            --accent: #e67e22;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background-color: var(--dark);
            color: var(--light);
            padding: 25px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            color: var(--accent);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            letter-spacing: 1.5px;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            max-width: 1200px;
            margin: 25px auto;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--dark);
            text-decoration: none;
            padding: 12px 22px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
        }
        nav a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://via.placeholder.com/1200x450?text=Evening+Velocity+King+Racing') center/cover;
            color: white;
            padding: 90px 0;
            text-align: center;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(46,204,113,0.3);
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46,204,113,0.4);
        }
        .btn-secondary {
            background-color: var(--secondary);
            box-shadow: 0 4px 12px rgba(44,62,80,0.3);
        }
        .btn-secondary:hover {
            background-color: #1a2530;
            box-shadow: 0 8px 20px rgba(44,62,80,0.4);
        }
        h2 {
            color: var(--primary);
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--secondary);
            font-size: 2rem;
        }
        h3 {
            color: var(--secondary);
            margin: 35px 0 20px;
            font-size: 1.5rem;
        }
        h4 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        .game-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 40px;
            border-top: 5px solid var(--primary);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .feature-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
            border-left: 6px solid var(--primary);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .highlight-box {
            background-color: rgba(230,126,34,0.1);
            border-left: 6px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 35px 0;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: rgba(44,62,80,0.06);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-section a {
            color: var(--light);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #b3b3b3;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 25px;
            right: 25px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 120px;
                left: 0;
                right: 0;
                background-color: white;
                padding: 25px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                z-index: 100;
            }
            nav.show {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 15px;
            }
        }
        .tag-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            margin: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .recommendation-box {
            background-color: rgba(44,62,80,0.08);
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            border: 2px solid var(--secondary);
        }
        .recommendation-box h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .daman-link {
            color: var(--primary);
            font-weight: bold;
            text-decoration: none;
            border-bottom: 2px dotted var(--primary);
            transition: all 0.3s ease;
        }
        .daman-link:hover {
            color: var(--dark);
            border-bottom: 2px solid var(--dark);
        }
        .stat-box {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
        .stat-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--primary);
        }
        .gameplay-video {
            width: 100%;
            height: 450px;
            background-color: #e0e0e0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            color: var(--secondary);
            font-weight: 600;
        }
        .character-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .character-item {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-top: 3px solid var(--accent);
        }
        .quote-box {
            font-style: italic;
            padding: 20px;
            background-color: rgba(46,204,113,0.08);
            border-left: 4px solid var(--primary);
            margin: 25px 0;
        }
        .quote-author {
            display: block;
            text-align: right;
            font-weight: bold;
            margin-top: 10px;
            color: var(--secondary);
        }
