/* Ultra Premium Return Banner - Next-Gen UI/UX MWAHAHAHAHHAHAAHAHAHHAHAHAHAHHA*/
/* Footer Links Styling */
/* Footer Links Styling - Compact Elegant Version */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px auto;
    max-width: 600px;
    padding: 15px;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 64, 129, 0.3);
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.3);
}

.footer-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    color: #f9a602;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(255, 166, 2, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.footer-link:hover {
    background: linear-gradient(145deg, #ff4081, #f9a602);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 64, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-link:active {
    transform: translateY(0);
}

.footer-link::before {
    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;
}

.footer-link:hover::before {
    left: 100%;
}

/* Pill-shaped links for desktop */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
        width: 90%;
        max-width: 400px;
    }
    
    .footer-link {
        padding: 10px;
        font-size: 0.85rem;
        white-space: normal;
        border-radius: 8px;
    }
}

/* Responsive adjustments */


@media (max-width: 480px) {
    .footer-links {
        padding: 10px;
    }
    
    .footer-link {
        padding: 8px 10px;
    }
}
    

/* Automation Trigger Notification */
.automation-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1625 0%, #2a2438 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(255, 94, 194, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 105, 180, 0.3);
    display: none;
}

.automation-notification.active {
    display: block;
}

.automation-notification.success {
    border-color: #4CAF50;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(76, 175, 80, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.automation-notification.error {
    border-color: #ff4081;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(255, 64, 129, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.automation-gif {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.automation-title {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Pacifico', cursive;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.automation-message {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.automation-close-btn {
    background: linear-gradient(to right, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.automation-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

.automation-close-btn:active {
    transform: translateY(1px);
}

.automation-close-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.automation-close-btn:hover::before {
    left: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    background-size: cover;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    animation: fadeIn 1s ease-in-out;
    cursor: url('images/magic-cursor.png'), auto;
}

/* Theme Variables */
:root {
    --background-color: #1e1e1e;
    --text-color: #ffffff;
    --primary-color: #ff4081;
    --secondary-color: #f9a602;
    --error-color: #ff4081;
}

[data-theme="light"] {
    --background-color: #ffffff;
    --text-color: #1e1e1e;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 64, 129, 0.7);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 64, 129, 0.9);
    }
}

@keyframes bubble {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes bubbleMove {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #25d366;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px #25d366;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #25d366;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Subtle Grid Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Header Styling */
header {
    text-align: center;
    padding: 20px 10px;
    background-color: #1e1e1e;
    border-bottom: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081;
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
    max-width: 550px;
    margin: 0 auto;
    border-radius: 10px;
    animation: slideIn 1.5s ease-out;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602, 0 0 20px #ff4081;
}

h2 {
    font-size: 1.5rem;
    color: #ff4081;
    text-shadow: 0 0 8px #ff4081, 0 0 15px rgba(255, 64, 129, 0.7);
    margin-bottom: 10px;
}

/* Language Selector Styling */
.language-select {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    background-color: rgba(30, 30, 30, 0.8);
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
}

.language-select select {
    padding: 5px;
    margin-left: 10px;
    border-radius: 5px;
    background-color: #444;
    color: #e0e0e0;
    border: none;
}

/* Promo Banner */
.promo-banner {
    text-align: center;
    margin: 20px 0;
    animation: slideIn 2s ease-out;
}

.promo-img {
    width: 80%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.8);
    transition: transform 0.3s ease-in-out;
}

.promo-img:hover {
    transform: scale(1.05);
}

.promo-banner h1, .promo-banner p {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

/* Top-Up Section */
.top-up-section {
    background-color: rgba(30, 30, 30, 0.9);
    width: 80%;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7);
    animation: slideIn 2.8s ease-out;
}

label {
    display: block;
    margin-top: 15px;
    font-size: 1.1em;
    color: #f9a602;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #e0e0e0;
    transition: box-shadow 0.3s ease-in-out;
    max-width: 300px;
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    box-shadow: 0 0 10px #ff4081;
}

input.error {
    animation: shake 0.3s ease-in-out;
    border: 2px solid red;
}

/* Diamond Selection Styling */
.diamond-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

#diamondRange {
    width: 60%;
}

#diamondAmount, #diamondPrice {
    margin-left: 10px;
    color: #f9a602;
    font-weight: bold;
}

/* Pass Selection Styling */
.pass-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.pass-selection button {
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff4081, 0 0 20px rgba(255, 64, 129, 0.7);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.pass-selection button:hover {
    background-color: #ff80ab;
    box-shadow: 0 0 15px #ff80ab, 0 0 25px rgba(255, 128, 171, 0.7);
    transform: translateY(-3px);
}

/* Cart Section */
.cart-section {
    width: 80%;
    max-width: 600px;
    margin: 30px auto;
    background-color: rgba(40, 40, 40, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7);
    animation: slideIn 0.2s ease-out;
}

table {
    width: 100%;
    margin-bottom: 20px;
    color: #e0e0e0;
}

th, td {
    padding: 10px;
    text-align: left;
}

.cart-summary {
    text-align: right;
    margin-top: 20px;
    color: #f9a602;
}

/* Open Hours Notice */
.open-hours {
    text-align: center;
    margin: 30px auto;
    color: #ff4081;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    border-top: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081;
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602;
}

/* Button Styling */
button {
    background-color: #ff4081;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 0 10px #ff4081, 0 0 20px rgba(255, 64, 129, 0.7);
}

button:hover {
    background-color: #ff80ab;
    box-shadow: 0 0 15px #ff80ab, 0 0 25px rgba(255, 128, 171, 0.7);
    transform: translateY(-3px);
}

#buyNowButton {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 1rem;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff4081;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#buyNowButton:disabled {
    background-color: #555;
    color: #aaa;
    cursor: not-allowed;
}

/* Floating WhatsApp Button */
.whatsapp-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s;
    animation: pulse 1.5s infinite;
}

.whatsapp-floating-button img {
    width: 50px;
    height: 50px;
    display: block;
}

.whatsapp-floating-button:hover {
    background-color: #128C7E;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Dashboard Button */
.dashboard-button {
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.dashboard-button:hover {
    background-color: #0056b3;
}

/* Two-column grid layout */
.diamond-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.diamond-card {
    background-color: #1f1f1f;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff4081;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.diamond-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff4081, 0 0 30px rgba(255, 64, 129, 0.8);
}

.diamond-card img {
    width: 60px;
    margin-bottom: 15px;
}

.diamond-card h3 {
    font-size: 1.2rem;
    color: #ff4081;
    margin: 10px 0;
}

.diamond-card .price {
    font-size: 1rem;
    color: #f9a602;
    margin: 10px 0;
}

.diamond-card button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.diamond-card button:hover {
    background-color: #ff80ab;
}

/* Form Styling */
form {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7);
}

form label {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #f9a602;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: #fff;
}

/* Bubble Styles */
.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
    animation: float 4s infinite ease-in-out;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 20%; animation-duration: 6s; }
.bubble:nth-child(2) { width: 60px; height: 60px; left: 50%; animation-duration: 7s; }
.bubble:nth-child(3) { width: 30px; height: 30px; left: 80%; animation-duration: 5s; }
.bubble:nth-child(4) { width: 50px; height: 50px; left: 30%; animation-duration: 9s; }
.bubble:nth-child(5) { width: 20px; height: 20px; left: 50%; animation-duration: 8s; }

/* Banner Section */
.banner {
     background: url('../images/honeymoon.gif') no-repeat center center;
    background-size: cover;
    padding: 10px;
    margin: 20px auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    text-align: center;
    position: relative;
    left: unset;
    overflow: hidden;
}

.banner img {
    max-width: 20%;
    height: auto;
}

.banner h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
}

/* Left Container */
.left-container {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    background: none;
    border: none;
    padding: 20px;
    box-sizing: border-box;
}

.left-container p {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 16px;
    color: #cccccc;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.left-container img {
      width: 100%;
    max-width: 600px;
    margin-bottom: 10px;
    border-radius: 10px;
    animation: float 6s infinite ease-in-out;
}

/* MLBB Image */
.mlbb-image {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.mlbb-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Profile Picture Styling */
#profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 1px solid #ff00ff;
    box-shadow:
        0 0 12px rgba(255, 0, 255, 0.8),
        0 0 25px rgba(255, 0, 255, 0.6),
        inset 0 0 8px rgba(255, 0, 255, 0.4);
    transition: 0.4s ease-in-out;
}

#profile-pic:hover {
    box-shadow:
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.9),
        inset 0 0 12px rgba(255, 0, 255, 0.6);
    transform: scale(1.1);
}

/* Dot Spinner Animation */
.dot-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ff4081;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

/* Welcome Message Styling */
#welcome-message {
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 5px;
    text-shadow: 2px 2px 4px var(--text-shadow-color);
    animation: glow 1.5s infinite alternate;
}

/* Login Button Styling */
#login-btn {
    display: flex;
    margin-left: 125px;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 25px;
    background: linear-gradient(145deg, #4285f4, #357abd);
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#login-btn img {
    width: 24px;
    height: 24px;
}

/* Base Gaming Button Style */
.gaming-button {
    display: inline-flex;
    margin-left: 200px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(145deg, #ff0080, #ff8c00, #ff0080);
    border: 2px solid #ff0080;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 140, 0, 0.5);
    transition: all 0.3s ease;
    animation: glow 2s infinite;
}

.gaming-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 1;
    pointer-events: none;
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.button-text {
    position: relative;
    z-index: 2;
}

.gaming-button:hover {
    background: linear-gradient(145deg, #ff8c00, #ff0080, #ff8c00);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8), 0 0 40px rgba(255, 140, 0, 0.8);
    transform: scale(1.05);
}

.gaming-button:active {
    transform: scale(0.95);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #1e1e1e;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #ff4081;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.7);
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff4081;
}

#playerInfo {
    margin: 20px 0;
    font-size: 1.1em;
}

#playerName {
    color: #f9a602;
    font-weight: bold;
}

/* Button Positioning */
#checkPlayerBtn, #buyNowButton {
    margin-left: -10px;
}

#purchaseForm button.gaming-button {
    margin-left: -10px;
}

/* Enhanced CAPTCHA Modal Styles */
.captcha-modal {
    display: block; /* or flex if you want dimming layer alignment */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.captcha-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px var(--primary-color);
    border: 2px solid var(--primary-color);
    max-width: 350px;
    width: 90%;
    z-index: 10000;
}

.captcha-content h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(249, 166, 2, 0.7);
}

.captcha-image-container {
    margin: 15px 0;
    padding: 15px;
    background-color: rgba(255, 64, 129, 0.1);
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
}

.captcha-content img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 64, 129, 0.5));
}

.captcha-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background-color: #444;
    color: #e0e0e0;
    font-size: 16px;
    text-align: center;
}

.captcha-input:focus {
    outline: none;
    box-shadow: 0 0 10px var(--primary-color);
}

.captcha-btn {
    margin-top: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
}

.captcha-btn:hover {
    background-color: #ff80ab;
    box-shadow: 0 0 15px rgba(255, 128, 171, 0.7);
    transform: translateY(-2px);
}

#captchaError {
    color: var(--error-color);
    display: none;
    margin-top: 10px;
    font-size: 14px;
    animation: shake 0.3s ease-in-out;
}

.captcha-refresh {
    cursor: pointer;
    color: #25d366;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s;
}

.captcha-refresh:hover {
    color: #128C7E;
    text-shadow: 0 0 5px rgba(18, 140, 126, 0.5);
}

.captcha-footer {
    margin-top: 15px;
    font-size: 12px;
    color: #aaa;
}

/* Cursor Styles */
a, button {
    cursor: url('images/magic-cursor-hover.png'), pointer;
}

/* Developer Mode */
.dev-mode-active::before {
    content: "Developer Mode Active";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #ff5ec2;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 9999;
}

.dev-tools {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(30, 27, 41, 0.9);
    border: 2px solid #ff5ec2;
    padding: 15px;
    border-radius: 10px;
    z-index: 9998;
    max-width: 300px;
}

.dev-tools h3 {
    color: #ff5ec2;
    margin-top: 0;
}

.dev-tools button {
    background: #ff5ec2;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}


/* =================================================================== */
/* ============== RESPONSIVE STYLES FOR TABLET & MOBILE ============== */
/* =================================================================== */

/* Responsive Scaling for Return Banner */
@media (max-width: 768px) {
   
}

@media (max-width: 768px) {

}

@media (max-width: 768px) {
   






/* Even smaller for very narrow devices */

/* General Tablet & Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header, .top-up-section, .cart-section {
        width: 95%;
        padding-left: 15px;
        padding-right: 15px;
    }

    h1, h2 {
        font-size: 1.2rem;
    }

    input, select {
        width: 100%;
        max-width: 100%;
    }

    /* Promo Banner Adjustments */
    .promo-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .promo-img {
        width: 95%;
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    .promo-banner p {
        font-size: 0.95rem;
        margin-top: 0;
        text-align: center;
        width: 90%;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 10px;
    }

    .diamond-selection, .pass-selection {
        flex-direction: column;
        gap: 5px;
    }

    /* --- MODIFIED: Diamond cards now in 2 columns --- */
    .diamond-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .diamond-card {
        padding: 15px;
    }
    .diamond-card h3 {
        font-size: 1rem;
    }
    .diamond-card img {
        width: 50px;
        margin-bottom: 10px;
    }

    table {
        font-size: 14px;
    }

    .gaming-button, #login-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .language-select {
        flex-direction: column;
        gap: 5px;
    }

    .left-container, .banner {
        padding: 10px;
    }
}

/* Phone-Specific Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    /* --- MODIFIED: Making diamond cards 1 column for small phones --- */
    .diamond-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* --- MODIFIED: Resizing WhatsApp button for phones --- */
    .whatsapp-floating-button, .whatsapp-button {
        padding: 8px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-floating-button img {
        width: 35px;
        height: 35px;
    }
     .whatsapp-button img {
        width: 30px;
        height: 30px;
    }

    header {
        padding: 15px 5px;
    }
}
}

  
        