/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #10B981;
    --dark-bg: #0A0E27;
    --dark-card: #151B3D;
    --darker-bg: #050816;
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --gold: #F59E0B;
    --gradient-1: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-2: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --gradient-3: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: backgroundPulse 10s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--darker-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Floating Cards */
.hero-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--primary-color);
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
    color: var(--secondary-color);
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
    color: var(--accent-color);
}

.card-4 {
    top: 40%;
    right: 10%;
    animation-delay: 4.5s;
    color: var(--gold);
}

/* ===========================
   Featured Games Section
   =========================== */
.featured-games,
.popular-games {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.game-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    background: var(--gradient-1);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card:hover .game-play-btn {
    transform: scale(1);
}

.game-info {
    padding: 1.5rem;
    position: relative;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-badge.new {
    background: var(--gradient-3);
}

/* ===========================
   Popular Games Section
   =========================== */
.popular-games {
    background: var(--dark-bg);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.popular-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.popular-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.popular-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.popular-card h4 {
    font-family: 'Orbitron', sans-serif;
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.popular-card p {
    padding: 0 1rem 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: var(--dark-card);
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* ===========================
   Games Gallery
   =========================== */
.games-gallery {
    padding: 4rem 0;
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--dark-card);
    color: var(--text-white);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-2px);
}

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

/* ===========================
   Payment Section
   =========================== */
.payment-section {
    padding: 4rem 0;
}

.payment-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.payment-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.payment-card ul {
    list-style: none;
    margin-top: 1rem;
}

.payment-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.payment-card ul li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Payment Process */
.payment-process {
    margin: 4rem 0;
}

.payment-process h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    font-family: 'Orbitron', sans-serif;
}

.step h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-gray);
}

/* Security Section */
.security-section {
    margin-top: 4rem;
}

.security-section h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.security-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.security-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: var(--text-gray);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--darker-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.form-success {
    display: none;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--accent-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-gray);
}

/* ===========================
   Game Detail Page Styles
   =========================== */
.game-detail-hero {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.game-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.game-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.game-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-badge-large {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

.game-detail-info {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.game-detail-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.game-detail-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.stars {
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-gray);
    font-size: 1rem;
}

.game-description {
    margin-bottom: 2rem;
}

.game-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.game-description h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.game-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.category-tag {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.game-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-download {
    background: var(--gradient-3);
    flex: 1;
    min-width: 200px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.btn-play {
    background: var(--gradient-2);
    flex: 1;
    min-width: 200px;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* How to Play Section */
.how-to-play {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.step-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive for Game Detail */
@media (max-width: 968px) {
    .game-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-detail-title {
        font-size: 2.5rem;
    }

    .game-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-actions {
        flex-direction: column;
    }

    .btn-download,
    .btn-play {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-detail-title {
        font-size: 2rem;
    }

    .game-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ===========================
   Contact Modal Styles
   =========================== */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-modal-content {
    background: var(--dark-card);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.contact-modal-close:hover {
    color: var(--primary-color);
}

.contact-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--darker-bg);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
}

.contact-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
}

.messenger-btn:hover {
    background: linear-gradient(135deg, #0084FF 0%, #0066CC 100%);
    border-color: #0084FF;
}

.call-btn:hover {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: #10B981;
}

.sms-btn:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-color: #F59E0B;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        padding: 2rem 0;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        text-align: center;
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .games-grid,
    .all-games-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Modal Mobile */
    .contact-modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .contact-modal-content h2 {
        font-size: 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-btn {
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* FIX: Feature Games Play Now Button Click */
.game-overlay {
  pointer-events: none;
}

.game-play-btn {
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

/* FIX: Make all links same color */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #6EE7B7;   /* tum apna color change kar sakte ho */
  text-decoration: none;
}

/* Hover effect (optional) */
a:hover {
  color: #b794f4;
}

/* Help Center / Support Links - FINAL */
.help-center-content a,
.support-links a,
.footer a {
  color: #4fd1ff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-center-content a:hover,
.support-links a:hover,
.footer a:hover {
  color: #7be3ff;
}

/* California Live Time */
.top-time {
  color: #4cff9a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #2aff8f;
    opacity: 0.7;
  }
  to {
    text-shadow: 0 0 12px #4cff9a;
    opacity: 1;
  }
}

/* 🔥 California Time Button */
.time-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  background: transparent;
  cursor: default;
  animation: timeGlow 1.5s infinite alternate;
}

.time-icon {
  font-size: 16px;
}

/* glow / blink */
@keyframes timeGlow {
  from {
    box-shadow: 0 0 6px rgba(34,197,94,0.4);
  }
  to {
    box-shadow: 0 0 14px rgba(34,197,94,0.9);
  }
}

/* ===== HEADER FIX (Mobile + Desktop) ===== */

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap; /* ✅ allows wrapping on mobile */
}

/* Logo area */
.nav-brand {
  max-width: 65%;
}

/* ===== California Time Button ===== */
.time-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  background: transparent;
  animation: timeGlow 1.5s infinite alternate;
}

/* Label (California Time) */
.time-label {
  font-size: 11px;
  opacity: 0.8;
  display: block;
  text-align: center;
}

/* Glow animation */
@keyframes timeGlow {
  from {
    box-shadow: 0 0 5px rgba(34,197,94,0.4);
  }
  to {
    box-shadow: 0 0 12px rgba(34,197,94,0.9);
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .nav-brand {
    max-width: 100%;
  }

  .time-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* =====================================
   FEATURED GAMES – MOBILE ONLY GRID
   ===================================== */
@media (max-width: 768px) {

  /* Grid layout */
  .featured-games .games-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  /* Card */
  .featured-games .game-card {
    background: #0b1220;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
  }

  /* Image wrapper */
  .featured-games .game-card .game-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
  }

  /* Image */
  .featured-games .game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Title */
  .featured-games .game-card h3,
  .featured-games .game-title {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 6px 4px;
    color: #6ee7b7;
  }

  /* Hide description / subtitle */
  .featured-games .game-card p {
    display: none;
  }
}

/* ===============================
   PLAY NOW – EXACT SAME SIZE AS TIME
================================ */

.top-play-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 150px;
  min-height: 54px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 2px solid #22c55e;
  background: rgba(34, 197, 94, 0.08);

  color: #4cff9a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  white-space: nowrap;
  text-decoration: none;

  animation: glow 1.5s infinite alternate;
}

/* INNER WHITE PLAY PILL */
.play-inner-pill {
  background: #ffffff;
  color: #022c22;

  padding: 6px 14px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;

  display: flex;
  align-items: center;
  gap: 6px;

  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Hover effect – inner pill glow */
.top-play-pill:hover .play-inner-pill {
  background: #f0fdf4;
}

/* ===============================
   FEATURED GAMES – IMAGE ONLY
   MOBILE (REMOVE BLANK SPACE)
================================ */

@media (max-width: 768px) {

  /* Remove bottom info completely */
  .featured-games .game-card .game-info {
    display: none !important;
  }

  /* Card clean */
  .featured-games .game-card {
    padding: 0 !important;
    background: transparent !important;
  }

  /* Image only */
  .featured-games .game-card .game-image {
    margin: 0 !important;
    border-radius: 14px;
    overflow: hidden;
  }

}

/* =====================================
   FEATURED GAME – MOBILE ICON ONLY
   CLEAN & FINAL (NO TEXT)
===================================== */
@media (max-width: 768px) {

  /* Hide theme play button completely */
  .featured-games .game-card a {
    display: none !important;
  }

  /* Custom play icon overlay */
  .featured-games .game-card::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: linear-gradient(135deg, #b76cff, #ff6ec7);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
  }
}

/* =====================================
   POPULAR GAMES – REAL FIX (NO CROP)
   IMAGE AUTO HEIGHT
===================================== */

.popular-games .popular-card a {
  display: block;
  height: auto !important;
}

.popular-games .popular-card img {
  width: 100% !important;
  height: auto !important;     /* 🔥 MOST IMPORTANT */
  max-height: none !important;
  object-fit: unset !important;
  display: block;
}

/* =====================================
   FEATURED GAMES – FORCE SHOW ALL (MOBILE)
   REMOVE nth-child LIMIT
===================================== */

@media (max-width: 768px) {

  .featured-games .game-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .featured-games .game-card:nth-child(n) {
    display: block !important;
  }

}

/* =====================================
   FEATURED GAMES – SHOW ALL (MOBILE)
   REAL FINAL FIX
===================================== */
@media (max-width: 768px) {

  .featured-games .games-grid {
    display: grid !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }

  .featured-games .game-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

}

