body {
    font-family: 'Inter', sans-serif;
    background-size: cover;
    color: white;
    justify-content: center;
    align-items: flex-start;
    background-color: #0a0a0a;
    min-height: 100vh;
}

/* ===== Section Headers ===== */
.heading-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(45deg, #8A2BE2, #4B0082, #2b0047);
    padding: 12px 28px;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    50% {
        box-shadow: 0 4px 25px rgba(138, 43, 226, 0.5),
                    inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% {
        background-position: -200% center;
    }
}

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

.hero-content {
    text-align: center;
    padding: 48px 24px;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

/* Hero Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-cta {
    display: inline-flex;
    gap: 16px;
    margin-top: 16px;
}

.hero-button {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button {
    background: linear-gradient(45deg, #00A8E1, #00A8E1);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 168, 225, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 225, 0.4);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.secondary-button:hover {
    border-color: #00A8E1;
    background: rgba(0, 168, 225, 0.1);
}

.subscription-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    width: 280px;
    height: fit-content; /* Changed from min-height to fit-content */
    backdrop-filter: blur(10px);
}

/* Platform-specific card styles */
.subscription-card.netflix {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(229,9,20,0.15));
}

.subscription-card.prime {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(0,168,225,0.15));
}

.subscription-card.hotstar {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(30,144,255,0.15));
}

.subscription-card.zee5 {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(138,43,226,0.15));
}

.subscription-card.sonyliv {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(255,69,0,0.15));
}

.subscription-card.spotify {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(30,215,96,0.15));
}

.subscription-card.pornhub {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(255,165,0,0.15));
}

/* Platform-specific hover effects */
.subscription-card.netflix:hover {
    border-color: rgba(229,9,20,0.5);
    box-shadow: 0 12px 36px rgba(229,9,20,0.3);
    transform: translateY(-5px);
}

.subscription-card.prime:hover {
    border-color: rgba(0,168,225,0.5);
    box-shadow: 0 12px 36px rgba(0,168,225,0.3);
    transform: translateY(-5px);
}

.subscription-card.hotstar:hover {
    border-color: rgba(30,144,255,0.5);
    box-shadow: 0 12px 36px rgba(30,144,255,0.3);
    transform: translateY(-5px);
}

.subscription-card.zee5:hover {
    border-color: rgba(138,43,226,0.5);
    box-shadow: 0 12px 36px rgba(138,43,226,0.3);
    transform: translateY(-5px);
}

.subscription-card.sonyliv:hover {
    border-color: rgba(255,69,0,0.5);
    box-shadow: 0 12px 36px rgba(255,69,0,0.3);
    transform: translateY(-5px);
}

.subscription-card.spotify:hover {
    border-color: rgba(30,215,96,0.5);
    box-shadow: 0 12px 36px rgba(30,215,96,0.3);
    transform: translateY(-5px);
}

.subscription-card.pornhub:hover {
    border-color: rgba(255,165,0,0.5);
    box-shadow: 0 12px 36px rgba(255,165,0,0.3);
    transform: translateY(-5px);
}

.price {
    font-size: 28px;
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin: 8px 0;
}

.platform-title {
    font-size: 12px;
    background: linear-gradient(120deg, #ffffff 20%, #e6e6e6 40%, #ffffff 60%, #e6e6e6 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: shimmer 2s linear infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 12px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1.6;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 10px 14px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Style for non-selectable feature info items */
.features li.feature-info {
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    cursor: default;
    padding: 8px 14px;
    font-weight: 400;
}

.features li.feature-info:hover {
    background: transparent;
    transform: none;
}

/* Add an icon before feature info items */
.features li.feature-info::before {
    content: "✓";
    margin-right: 8px;
    color: #00A8E1;
    font-weight: bold;
}

/* Keep existing styles for selectable items */
.features li:not(.feature-info) {
    background: rgba(255,255,255,0.05);
    cursor: pointer;
}

.features li.selected {
    border: 2px solid #00A8E1;
    background: rgba(0, 168, 225, 0.1);
    transform: scale(1.02);
}

.features li:not(.feature-info):hover {
    background: rgba(255,255,255,0.1);
}

.cta-button {
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,168,225,0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #0077ff, #00A8E1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,168,225,0.4);
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 24px;
    padding: 32px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 768px) {
    .subscriptions-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    .subscription-card {
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
    }
}

.contact-info {
    text-align: center;
    padding: 48px;
    background: rgba(20,20,20,0.95);
    margin-top: 64px;
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info .phone {
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 24px 0;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
}

.platform-logo img {
    width: 40px;     /* Fixed width */
    height: 40px;    /* Fixed height */
    object-fit: cover; /* Changed to cover to fill the space */
    padding: 0;      /* Remove any padding */
    margin: 0;       /* Remove any margin */
}

.platform-logo {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 0;      /* Removed padding */
    overflow: hidden; /* Ensure image stays within bounds */
}

.platform-info {
    flex-grow: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    z-index: 1000;
    /* Add subtle glow effect */
    animation: pulse 2s infinite;
    backdrop-filter: blur(5px);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.whatsapp-float:hover::before {
    transform: scale(1.2);
    opacity: 0;
}

.whatsapp-float svg {
    width: 500px;
    height: 500px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    scale: 1;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip style */
.whatsapp-float::after {
    content: 'Chat with us!';
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(-10px);
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::after {
        display: none; /* Hide tooltip on mobile */
    }
}

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    margin: 40px auto;
    max-width: 800px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 12px 0;
}

.contact-social {
    margin-top: 40px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-button.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-button.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.social-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
        margin: 20px;
    }

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

    .social-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Games Grid Layout */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Game Card Styles */
.game-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    order: 0; /* Default order */
    transition: order 0.3s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,168,225,0.3);
    border-color: rgba(0,168,225,0.5);
}

/* Discount Badge */
.game-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #4CAF50;
    color: white;
    padding: 3px 6px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
}

/* Game Image */
.game-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Game Info */
.game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.original-price {
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    font-size: 13px;
}

.sale-price {
    color: #00A8E1;
    font-size: 18px;
    font-weight: 600;
}

/* Buy Button */
.game-cta {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.game-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,168,225,0.4);
}

/* PC GAMES Heading Style */
#pc-games {
    background: linear-gradient(45deg, #800080, #4B0082);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    display: inline-block;
    margin: 40px 0 20px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(75,0,130,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
        padding: 12px;
    }
    
    .game-card {
        padding: 12px;
    }

    .game-image {
        height: 120px;
    }

    .game-info h3 {
        font-size: 14px;
    }

    .sale-price {
        font-size: 16px;
    }

    .game-cta {
        padding: 8px;
        font-size: 13px;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00A8E1;
    box-shadow: 0 12px 40px rgba(0,168,225,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.service-features li {
    color: rgba(255,255,255,0.8);
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li::before {
    content: "✓";
    color: #00A8E1;
    margin-right: 0.5rem;
}

.service-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,168,225,0.4);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* Updated search styles */
.search-container {
    margin: 20px auto 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 16px 45px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(20,20,20,0.8);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00A8E1;
    box-shadow: 0 0 20px rgba(0,168,225,0.2);
    background: rgba(30,30,30,0.9);
}

.search-input::placeholder {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.search-input:focus::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #00A8E1;
}

.clear-search {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.clear-search:hover {
    color: #00A8E1;
    transform: scale(1.1);
}

.clear-search svg {
    width: 16px;
    height: 16px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20,20,20,0.95);
    border-radius: 15px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

.search-result-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:hover {
    background: rgba(0,168,225,0.1);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.result-info {
    flex: 1;
}

.result-title {
    color: white;
    font-size: 14px;
    line-height: 1.4;
}

/* Animation for search results */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results.active {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Add these styles for the search icon */
.search-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #00A8E1;
}

/* Update search input padding to accommodate the icon */
.search-input {
    padding-left: 45px;
}

/* Add smooth transition for visibility changes */
.game-card {
    transition: opacity 0.3s ease;
}

.game-card.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 110px; /* Position it to the left of WhatsApp button */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #3d3d3d, #2a2a2a);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 90px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}

.payment-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: white;
}

.qr-container {
    margin: 20px 0;
}

.qr-container img {
    max-width: 250px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.1);
}

.payment-instructions {
    color: rgba(255,255,255,0.9);
    margin: 15px 0;
    font-size: 16px;
}

.bank-details, .upi-id {
    color: rgba(255,255,255,0.7);
    margin: 5px 0;
    font-size: 14px;
}

.send-screenshot-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-screenshot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.typing-text {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    background: linear-gradient(45deg, #00A8E1, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-right: 4px solid #00A8E1;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2s steps(20), blink .5s infinite;
}

.slide-up, .slide-up-2, .slide-up-3 {
    display: block;
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 10px rgba(0,168,225,0.4);
    font-weight: 500;
}

.slide-up { animation: slideUp 0.5s forwards 2s; }
.slide-up-2 { animation: slideUp 0.5s forwards 2.3s; }
.slide-up-3 { animation: slideUp 0.5s forwards 2.6s; }

.hero-button {
    background: linear-gradient(45deg, #00A8E1, #0077ff);
    color: white;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(0,168,225,0.4);
    font-weight: 600;
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0,168,225,0.6);
}

@media screen and (max-width: 768px) {
    .hero-content { padding: 24px 16px; }
    .hero-cta { flex-direction: column; gap: 12px; }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

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