/* ===== NAVBAR ===== */
.custom-navbar {
   background: linear-gradient(135deg, rgba(205, 241, 164, 0.557), rgba(42, 214, 253, 0.6));
    backdrop-filter: blur(10px);
}
.brand-gradient {
   background: linear-gradient(90deg, #fa30f6, #00e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== HERO POSTER ===== */
.hero-poster .poster-box {
    background: rgba(127, 241, 247, 0);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px #00eaff75;
    animation: fadeIn 0.8s ease;
}
.hero-poster h1 {
    color: #00eaff;
    font-size: 2.2rem;
    font-weight: bold;
}
.hero-poster span {
    color: gold;
    font-weight: bold;
}
.poster-btn {
    margin-top: 20px;
    background: #00eaff;
    color: #002744;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}
.poster-btn:hover {
    transform: scale(1.1);
}
/* ====================================================== */
/*                WEB3 GLASS + NEON CARDS                 */
/* ====================================================== */

.launches-container {
    margin-top: 40px;
}

.section-header {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00eaff;
}

/* Tier Strips */
/* Tier Strip Banner */
.tier-strip {
    width: 100%;
    padding: 18px 12px;
    text-align: center;
    font-weight: 800;
    border-radius: 14px;
    margin: 40px 0 25px 0;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #000;
    box-shadow: 0 0 25px rgba(255,255,255,0.35);
    border: 2px solid rgba(0,0,0,0.12);
}

/* Highlight text inside strip */
.tier-strip .highlight {
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
    opacity: 0.95;
}

/* $5 strip */
.strip-5 {
    background: linear-gradient(90deg, #ffcf00, #ff9d00);
}

/* $10 strip */
.strip-10 {
    background: linear-gradient(90deg, #ffd700, #ff5e5e);
}

/* Glow animation */
.tier-strip {
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 30px rgba(255,255,255,0.45); }
    100% { box-shadow: 0 0 15px rgba(255,255,255,0.2); }
}


/* Card Style */
.launch-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    border-left: 4px solid #00eaff;
    position: relative;
    transition: 0.25s;
    min-height: 160px; /* instead of height */
    height: auto; /* allow content to grow */
    overflow: hidden; /* prevent text overflow outside */
}

.launch-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 25px rgba(0,255,255,0.45);
}

.coin-title {
    font-size: 20px;
    font-weight: 700;
    color: #00eaff;
}

.coin-text {
    font-size: 15px;
    margin-top: 6px;
    opacity: 0.9;
}

/* Locked Overlay */
.lock-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    color: white;
}

.unlock-btn {
    background: #00eaff;
    padding: 8px 15px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    margin-top: 8px;
}
