/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===============================
   BODY
================================ */
body {
    background: #000;
    color: #00ff66;
    min-height: 100vh;
    padding: 20px;
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding-top: 70px;
}

/* ===============================
   TITLES
================================ */
.title,
h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(0,255,102,0.6);
}

.subtitle {
    margin-top: 10px;
    color: #9f9;
    font-size: 1rem;
}

/* ===============================
   CARDS LAYOUT
================================ */
.cards,
.cards-container,
.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* ===============================
   CARD BASE
================================ */
.card,
.plan-card,
.tip-card {
    width: 280px;
    padding: 28px;
    border-radius: 14px;
    border: 2px solid #00ff66;
    background: linear-gradient(180deg, #050505, #020202);
    color: #00ff66;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Glow layer (FIXED) */
.card::before,
.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(0,255,102,0.25),
        transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* ✅ FIX */
}

/* Hover effect */
.card:hover::before,
.plan-card:hover::before {
    opacity: 1;
}

.card:hover,
.plan-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: #00ff66;
    color: #000;
    box-shadow: 0 0 30px rgba(0,255,102,0.6);
}

/* ===============================
   VIP CARD
================================ */
.vip {
    border-color: gold;
    box-shadow: 0 0 35px rgba(255,215,0,0.5);
    animation: vipPulse 2.8s infinite;
}

@keyframes vipPulse {
    0% { box-shadow: 0 0 20px rgba(255,215,0,0.4); }
    50% { box-shadow: 0 0 45px rgba(255,215,0,0.9); }
    100% { box-shadow: 0 0 20px rgba(255,215,0,0.4); }
}

.vip:hover {
    transform: translateY(-10px) scale(1.06);
}

/* ===============================
   TEXT
================================ */
.card h2,
.plan-card h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p,
.plan-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===============================
   PRICE & BADGES
================================ */
.price {
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: bold;
    color: gold;
}

.badge {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 14px;
    background: gold;
    color: #000;
    font-size: 12px;
    border-radius: 20px;
    font-weight: bold;
}

/* ===============================
   BUTTONS (FIXED)
================================ */
button,
.button,
.btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background: #00ff66;
    color: #000;
    transition: all 0.3s ease;
    position: relative;  /* ✅ FIX */
    z-index: 5;          /* ✅ FIX */
    pointer-events: auto;
    text-decoration: none;
}

button:hover,
.button:hover,
.btn:hover {
    background: #66ff99;
    box-shadow: 0 0 20px rgba(0,255,102,0.8);
}

.btn.disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
}

/* ===============================
   BET TIPS
================================ */
.bet-card,
.match-box {
    border: 1px solid #00ff66;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #050505;
    box-shadow: 0 0 15px rgba(0,255,102,0.25);
}

.market {
    font-size: 14px;
    color: #9f9;
}

.odds span {
    background: #00ff66;
    color: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
}

/* ===============================
   ADMIN BUTTON
================================ */
.admin-btn {
    background: gold;
    color: #000;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
}

.admin-btn:hover {
    background: #ffcc33;
}

/* ===============================
   SAFETY FIX
================================ */
.plan-card {
    position: relative;
}

.plan-card * {
    pointer-events: auto;
}

/* ===============================
   MOBILE FIXES
================================ */
@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .container {
        padding-top: 40px;
    }

    .cards,
    .cards-container,
    .plans {
        flex-direction: column;
        gap: 18px;
    }

    .card,
    .plan-card,
    .tip-card {
        width: 100%;
    }

    h1,
    .title {
        font-size: 1.7rem;
    }

    button,
    .btn,
    .button {
        padding: 16px;
        font-size: 1rem;
    }
}

/* ===============================
   ACCESSIBILITY
================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

