/* Base Card Styling */


.bundle-card:hover {
    transform: translateY(-5px);
}

/* --- NEW GRADIENTS --- */
/* --- MORE SATURATED GRADIENTS --- */

/* --- BALANCED & PROMINENT GRADIENTS --- */

/* --- DARKER & READABLE GRADIENTS --- */

/* Entry (Starter) */
/* Entry - Deep Jungle to Mint */
.bg-starter {
    background: linear-gradient(180deg, #114B4F 0%, #39DD96 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    border: 3px solid rgba(57, 221, 150, 0.8);
}

/* Bronze - Solid border instead of glow */
.bg-bronze {
    background: linear-gradient(180deg, #2C2994 0%, #9543B1 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    border: 3px solid rgba(149, 67, 177, 0.8);
}

/* Silver - Solid border instead of glow */
.bg-silver {
    background: linear-gradient(180deg, #CC2E6B 0%, #EF7F73 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    border: 3px solid rgba(239, 127, 115, 0.8);
}

/* Gold - Solid border instead of glow */
.bg-gold {
    background: linear-gradient(180deg, #EE751A 0%, #E4C14D 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    border: 3px solid rgba(228, 193, 77, 0.8);
}

/* Diamond - Deep Ocean to Diamond Cyan */
.bg-diamond {
    background: linear-gradient(180deg, #1158A5 0%, #00C6FF 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    border: 3px solid rgba(0, 198, 255, 0.8);
}

/* Diamond */
.bundle-card.bg-diamond {
    border: 3px solid rgba(0, 198, 255, 0.95);
}

/* Don’t kill borders here */
.bundle-card {
    border-radius: 20px;
    border: 3px solid transparent; /* optional baseline */
}

/* Starter */
.bundle-card.bg-starter {
    border: 3px solid rgba(57, 221, 150, 0.95);

}

/* Bronze */
.bundle-card.bg-bronze {
    border: 3px solid rgba(149, 67, 177, 0.95);

}

/* Silver */
.bundle-card.bg-silver {
    border: 3px solid rgba(239, 127, 115, 0.95);

}

/* Gold */
.bundle-card.bg-gold {
    border: 3px solid rgba(228, 193, 77, 0.95);

}


/* NEW: Ensure text/buttons stay ON TOP of the pattern */
.bundle-card .card-body {
    position: relative;
    z-index: 2;
}

.bundle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    /* 1. CLOSER DIAMONDS: I increased the rect size to 68 (was 50).
   This fills the gap so they look like a tight grid. */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='16' y='16' width='68' height='68' rx='8' transform='rotate(45 50 50)' fill='%23ffffff' fill-opacity='0.12'/%3E%3C/svg%3E");

    /* 2. SIZE: Controls the zoom level */
    background-size: 70px 70px;

    /* 3. FADE: Visible at bottom, faded at top */
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 90%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 90%);
}

.bundle-card.bg-bronze::before {
    opacity: 0.3;
}


/* Typography & Layout */
.bundle-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.strike-price {
    position: relative;
    display: inline-block;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.strike-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 2px;
    background: #ff3b30;
    transform: rotate(-3deg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.big-number {
    font-size: 4rem;
    margin: 10px 0 0 0;
    color: #ffffff !important;
    /* NEW: Match the 'Select a Package' font style */
    /* font-style: italic; */
    font-weight: 900;
    line-height: 0.85;
    /* Tighter spacing like the header */
    letter-spacing: -1px;

    /* NEW: Match the heavy black outline & shadow stack */
    text-shadow: /* The Outline (Stroke) */ -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
        /* The 3D Block Shadow */ 1px 1px 0 #000,
    2px 2px 0 #000,
    3px 3px 0 #000,
    4px 4px 0 #000;
}

.sub-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}

.bonus-section {
    color: #ffffff;
    /* Changed to white for better visibility on all backgrounds */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.pill-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.bonus-pill {
    background-color: rgba(0, 0, 0, 0.3);
    /* Darker semi-transparent background works on all colors */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: white !important;
    /* Ensure price is always white for maximum contrast */

}

.payment-note {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);

}

/* 3D Green Button - Kept uniform for consistent Call to Action */
.btn-3d-green {
    background-color: #2fd533;
    color: black;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    width: 90%;
    margin-bottom: 25px;
    box-shadow: 0 6px 0 #1a8a20;
    transition: all 0.1s;
}

.btn-3d-green:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #1a8a20;
}

.btn-3d-green:hover {
    background-color: #3af53e;
    color: black;
}

/* Shared styles for both lines to get the slanted, bold look */
/* Shared base styles */
/* Shared base styles */
.impact-text-small,
.impact-text-large {
   
    font-weight: 900;
    /* font-style: italic; */
    line-height: 0.85;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* "SELECT A" - Light depth (2px) */
.impact-text-small {
    font-size: 2.5rem;
    text-shadow: /* The Outline (increased from 1.5px to 2px) */ -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
        /* The Shadow Stack (increased depth slightly) */ 1.5px 1.5px 0 #000,
    2.5px 2.5px 0 #000;
}


/* "PACKAGE" - Medium depth (4px) */
.impact-text-large {
    font-size: 4rem;
    color: #269af1 !important;
    text-shadow: /* The Outline */ -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
        /* The Shadow Stack (Medium) */ 1px 1px 0 #000,
    2px 2px 0 #000,
    3px 3px 0 #000,
    4px 4px 0 #000;
}

@media (prefers-color-scheme: dark) {
    #storeDetails .card-body {
        /* Very dark gray */
        background-color: #202020 !important;
        color: #e0e0e0 !important;
    }
}

.live-watch-section {
    position: relative;
    background: transparent;
    padding: 10px 0;
}

.live-watch-shell {
    border: 4px solid #000;
    border-radius: 32px;
    background: #fff;
    padding: 2.5rem;
    box-shadow: 12px 12px 0 #000, 0 0 60px rgba(124, 252, 0, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #ff2d55;
    border: 3px solid #000;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 6px 6px 0 rgba(255, 45, 85, 0.35);
    margin-bottom: 1.25rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff2d55;
    box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.18);
    animation: pulse-live 1.2s infinite;
}

@keyframes pulse-live {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.18);
        opacity: 0.75;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.live-heading {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #000;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.live-lime {
    color: #7CFC00;
}

.live-blue {
    color: #2962FF;
}

.live-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    line-height: 1.45;
    max-width: 460px;
    margin-bottom: 1.5rem;
}

.live-social-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-brutal {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    border: 3px solid #000;
    border-radius: 14px;
    padding: 14px 24px;
    box-shadow: 6px 6px 0 #000;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-brutal svg {
    flex-shrink: 0;
}

.btn-brutal:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
    color: #000;
}

.btn-brutal:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #000;
}

.btn-ig {
    background: #ffdbed;
}

.live-video-stack {
    position: relative;
    padding-top: 14px;
    padding-right: 14px;
}

.live-shape-acid {
    position: absolute;
    inset: -8px 8px 8px -8px;
    background: #7CFC00;
    border: 3px solid #000;
    border-radius: 28px;
    transform: rotate(2deg);
    z-index: 0;
}

.live-shape-black {
    position: absolute;
    inset: 12px -6px -10px 12px;
    background: #000;
    border-radius: 28px;
    transform: rotate(-2deg);
    z-index: 0;
}

.live-video-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 4px solid #000;
    border-radius: 28px;
    overflow: hidden;
    transform: rotate(-1.5deg);
}

.live-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #111;
    object-fit: cover;
}

@media (max-width: 991px) {
    .live-watch-shell {
        padding: 1.5rem 1.25rem;
        border-radius: 24px;
        box-shadow: 8px 8px 0 #000, 0 0 30px rgba(124, 252, 0, 0.2);
    }

    .live-copy {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .live-heading {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.05;
        letter-spacing: -1px;
        margin-bottom: 1.25rem;
    }

    .live-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .live-social-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .btn-brutal {
        width: 100%;
        font-size: 1rem;
        padding: 16px;
    }

    .live-video-stack {
        padding: 0;
    }

    .live-video-card {
        transform: none;
        border-radius: 16px;
        border-width: 3px;
    }
}

/* New Button Color */
.btn-enter {
    background: #7CFC00;
}

/* Countdown Container Styles */
.countdown-card {
    padding: 3.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    border: 3px solid #000;
    border-radius: 16px;
    padding: 15px 10px;
    min-width: 90px;
    box-shadow: 4px 4px 0 #000;
}

.time-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    color: #000;
}

.time-label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 8px;
    color: #333;
}

.colon {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin: 0 5px;
    padding-bottom: 25px; /* Visually aligns the colons with numbers */
}

/* Tablet & Small Desktop Responsiveness */
@media (max-width: 991px) {
    .countdown-card {
        padding: 2.5rem 1rem;
    }

    .countdown-wrapper {
        gap: 8px;
    }

    .time-box {
        min-width: 65px;
        padding: 12px 5px;
        border-radius: 12px;
        border-width: 2px;
        box-shadow: 3px 3px 0 #000;
    }

    .time-num {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.7rem;
        margin-top: 4px;
    }

    .colon {
        font-size: 1.5rem;
        margin: 0 2px;
        padding-bottom: 15px;
    }
}

/* Mobile Phone specifically (iPhone, Android, etc.) */
@media (max-width: 480px) {
    .countdown-card {
        padding: 1.5rem 0.5rem;
    }

    .countdown-wrapper {
        gap: 6px;
        justify-content: space-between;
    }

    .colon {
        display: none; /* Hide colons to save horizontal space */
    }

    .time-box {
        flex: 1; /* Automatically distribute equal width */
        min-width: 0; /* Prevents overflow */
        padding: 10px 2px;
        box-shadow: 2px 2px 0 #000;
    }

    .time-num {
        font-size: 1.3rem;
    }

    .time-label {
        font-size: 0.55rem;
        letter-spacing: -0.2px;
    }
}
