/* 
    BIG DEALZ CARD SHOW - STRUCTURAL OVERHAUL 
    Bubbly, Premium, Modern Layout
*/

:root {
    --bd-black: #000000;
    --bd-dark-grey: #0a0a0a;
    --bd-gold: #ffcc00;
    --bd-gold-glow: rgba(255, 204, 0, 0.4);
    --bd-orange: #ff6600;
    --bd-white: #ffffff;
    --bd-text: #f0f0f0;
    --bd-muted: #888888;
    --bd-radius-xl: 60px;
    --bd-radius-lg: 40px;
    --bd-radius-md: 25px;
}

/* Base resets and structure */
body {
    background-color: var(--bd-black);
    color: var(--bd-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.5;
}

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav Overhaul */
nav.nav, .topbar {
    background: rgba(0,0,0,0.9) !important;
    border-bottom: 3px solid var(--bd-gold);
    padding: 1.5rem 0 !important;
    backdrop-filter: blur(15px);
    position: sticky !important;
    top: 0;
    z-index: 9999;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    color: var(--bd-white) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem !important;
    border-radius: var(--bd-radius-md);
    transition: all 0.3s ease;
}

.nav a:hover, .nav a.active {
    background: var(--bd-gold) !important;
    color: var(--bd-black) !important;
    transform: scale(1.1);
}

/* Bubbly Panels & Sections */
.bd-panel {
    background: var(--bd-dark-grey);
    border: 4px solid var(--bd-gold);
    border-radius: var(--bd-radius-xl);
    padding: 4rem;
    margin: 4rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.bd-bubble {
    background: #111;
    border: 2px solid var(--bd-gold);
    border-radius: var(--bd-radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bd-bubble:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--bd-orange);
    box-shadow: 0 0 30px var(--bd-gold-glow);
}

/* Hero Stage */
.hero-stage {
    text-align: center;
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    border-radius: 0 0 var(--bd-radius-xl) var(--bd-radius-xl);
    border-bottom: 5px solid var(--bd-orange);
    margin-bottom: 5rem;
}

.hero-logo-box {
    display: inline-block;
    padding: 3rem;
    background: rgba(0,0,0,0.8);
    border: 8px solid var(--bd-gold);
    border-radius: 100px;
    margin-bottom: 3rem;
    box-shadow: 0 0 60px var(--bd-gold-glow);
}

.hero-logo-box img {
    width: min(500px, 80vw);
    display: block;
}

.hero-stage h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
    color: var(--bd-white);
    text-transform: uppercase;
}

.hero-stage p {
    font-size: 1.8rem;
    color: var(--bd-gold);
    font-weight: 700;
    letter-spacing: 5px;
    margin-top: 1rem;
}

/* Bubble Shortcut Grid */
.bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 4rem 0;
}

.shortcut-bubble {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.shortcut-bubble i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.shortcut-bubble b {
    font-size: 1.8rem;
    color: var(--bd-gold);
    text-transform: uppercase;
    display: block;
}

.shortcut-bubble span {
    color: var(--bd-muted);
    font-weight: 600;
}

/* Featured Marketplace Carousel Strip */
.market-strip {
    background: #050505;
    padding: 4rem 0;
    border-top: 2px solid var(--bd-gold);
    border-bottom: 2px solid var(--bd-gold);
    margin: 6rem 0;
}

.market-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.market-carousel::-webkit-scrollbar { display: none; }

.item-pod {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

/* Product Card / Pod */
.item-pod .card {
    background: #111 !important;
    border: 3px solid #222 !important;
    border-radius: var(--bd-radius-md) !important;
    padding: 0 !important;
    height: 100%;
}

.pod-img {
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 2px solid var(--bd-gold);
    background-color: #000;
    border-radius: var(--bd-radius-md) var(--bd-radius-md) 0 0;
}

.pod-body { padding: 1.5rem; }

/* Buttons & Pills */
.btn-pill {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bd-gold);
    color: var(--bd-black);
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-pill:hover {
    transform: scale(1.1);
    background: var(--bd-orange);
    box-shadow: 0 0 25px var(--bd-gold-glow);
}

/* Split Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 6rem 0;
}

@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; }
    .hero-stage h1 { font-size: 3rem; }
}

/* Forms */
.bold-form {
    background: #0a0a0a;
    border: 3px solid var(--bd-gold);
    border-radius: var(--bd-radius-lg);
    padding: 3rem;
}

.bold-form input, .bold-form select, .bold-form textarea {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    color: white !important;
    border-radius: 15px !important;
    padding: 1.2rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
}

.bold-form input:focus {
    border-color: var(--bd-gold) !important;
    outline: none;
}

/* Sponsor Wall */
.sponsor-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.sponsor-badge {
    background: #111;
    border: 1px solid #333;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 1rem;
}

.sponsor-badge.featured {
    border: 3px solid var(--bd-gold);
    box-shadow: 0 0 20px var(--bd-gold-glow);
}

/* Page Layout specific */
.page { display: none; }
.page.active { display: block; }

/* Marketplace Grid */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Typography */
.glow-text {
    text-shadow: 0 0 15px var(--bd-gold-glow);
}
