/* =====================================================
   PREMIUM LANDING PAGE - NO SCROLL RESPONSIVE
   Booz Bazzar + Sparkle Savvy
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    background: #0a0a0f;
    color: #fff;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===========================================
   ANIMATED BACKGROUND ORBS
   =========================================== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -2;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: min(600px, 50vw);
    height: min(600px, 50vw);
    background: radial-gradient(circle, #d4af37, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: min(500px, 40vw);
    height: min(500px, 40vw);
    background: radial-gradient(circle, #ff4fa3, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: min(400px, 35vw);
    height: min(400px, 35vw);
    background: radial-gradient(circle, #7c3aed, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ===========================================
   GRID OVERLAY
   =========================================== */
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: min(60px, 5vw) min(60px, 5vw);
    pointer-events: none;
}

/* ===========================================
   CONTAINER - Full Viewport
   =========================================== */
.container {
    width: min(1200px, 92%);
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 4vh, 60px) 0;
    position: relative;
    overflow: hidden;
}

/* ===========================================
   TITLE BOX
   =========================================== */
.title-box {
    text-align: center;
    margin-bottom: clamp(20px, 4vh, 70px);
    animation: fadeDown 1s ease forwards;
    flex-shrink: 0;
}

.glow-text {
    font-size: clamp(28px, 5vw, 48px);
    display: block;
    margin-bottom: clamp(5px, 1vh, 10px);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.title-box h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 5.5vw, 64px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: clamp(8px, 1.5vh, 16px);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ff4fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
}

.title-box h1 span {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 300;
    letter-spacing: 3px;
}

.title-line {
    width: clamp(40px, 6vw, 80px);
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #ff4fa3, transparent);
    margin: clamp(12px, 2vh, 20px) auto 0;
    border-radius: 10px;
    animation: lineExpand 1.5s ease forwards;
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: clamp(40px, 6vw, 80px); opacity: 1; }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   CARDS GRID
   =========================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 50px);
    perspective: 1200px;
    width: 100%;
    flex: 1;
    min-height: 0;
    align-content: center;
}

/* ===========================================
   CARD STYLES
   =========================================== */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(18, 18, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: clamp(20px, 2.5vw, 30px);
    padding: clamp(20px, 3vh, 50px) clamp(15px, 2vw, 35px);
    min-height: clamp(280px, 45vh, 520px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    animation: cardAppear 0.8s ease backwards;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(40px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: clamp(20px, 2.5vw, 30px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Card Glow */
.card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.card:hover .card-glow {
    opacity: 1;
}

/* Card Shimmer */
.card-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.03) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
}

.card:hover .card-shimmer {
    transform: rotate(45deg) translateX(100%);
}

/* Card Icon */
.card-icon {
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: clamp(8px, 1.5vh, 15px);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Brand Logo */
.brand-logo {
    width: clamp(100px, 18vw, 220px);
    max-width: 85%;
    height: auto;
    display: block;
    margin-bottom: clamp(10px, 1.5vh, 20px);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    object-fit: contain;
}

.card:hover .brand-logo {
    transform: scale(1.08) translateY(-5px);
}

.card h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.8vw, 32px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: clamp(4px, 0.8vh, 8px);
    text-align: center;
    line-height: 1.2;
}

.card p {
    font-size: clamp(12px, 1.4vw, 16px);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: clamp(15px, 2.5vh, 30px);
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Explore Button */
.explore-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.explore {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(10px, 1.5vh, 16px) clamp(18px, 2.5vw, 32px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(12px, 1.2vw, 15px);
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.explore svg {
    width: clamp(16px, 1.5vw, 20px);
    height: clamp(16px, 1.5vw, 20px);
    transition: transform 0.4s;
    flex-shrink: 0;
}

.card:hover .explore svg {
    transform: translateX(5px);
}

/* Booz Bazzar */
.booz {
    border-color: rgba(212, 175, 55, 0.15);
}

.booz .explore {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.booz:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), inset 0 0 80px rgba(212, 175, 55, 0.03);
    transform: translateY(-10px) scale(1.01);
}

.booz .card-glow {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 70%);
}

/* Sparkle Savvy */
.sparkle {
    border-color: rgba(255, 79, 163, 0.15);
}

.sparkle .explore {
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.2), rgba(255, 79, 163, 0.05));
    border-color: rgba(255, 79, 163, 0.3);
    color: #ff4fa3;
}

.sparkle:hover {
    border-color: rgba(255, 79, 163, 0.4);
    box-shadow: 0 20px 60px rgba(255, 79, 163, 0.15), inset 0 0 80px rgba(255, 79, 163, 0.03);
    transform: translateY(-10px) scale(1.01);
}

.sparkle .card-glow {
    background: radial-gradient(circle at center, rgba(255, 79, 163, 0.08), transparent 70%);
}

/* Hover Effects */
.card:hover .explore {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ===========================================
   RESPONSIVE - Tablet & Mobile
   =========================================== */

/* Tablet */
@media (max-width: 992px) {
    .container {
        padding: clamp(15px, 3vh, 40px) 0;
    }
    
    .cards {
        gap: clamp(15px, 3vw, 30px);
    }
    
    .card {
        min-height: clamp(220px, 38vh, 400px);
        padding: clamp(18px, 2.5vh, 35px) clamp(15px, 2vw, 25px);
    }
    
    .brand-logo {
        width: clamp(90px, 16vw, 160px);
    }
    
    .card h2 {
        font-size: clamp(16px, 2.5vw, 26px);
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr 1fr;
        gap: clamp(12px, 2vw, 20px);
    }
    
    .card {
        min-height: clamp(180px, 32vh, 300px);
        padding: clamp(15px, 2vh, 25px) clamp(12px, 1.5vw, 18px);
        border-radius: clamp(16px, 2vw, 22px);
    }
    
    .title-box {
        margin-bottom: clamp(12px, 2vh, 30px);
    }
    
    .title-box h1 {
        font-size: clamp(20px, 4vw, 30px);
    }
    
    .title-box p {
        font-size: clamp(11px, 1.4vw, 14px);
        letter-spacing: 2px;
    }
    
    .brand-logo {
        width: clamp(70px, 14vw, 120px);
        margin-bottom: clamp(6px, 1vh, 12px);
    }
    
    .card h2 {
        font-size: clamp(14px, 2.2vw, 20px);
        margin-bottom: clamp(2px, 0.5vh, 5px);
    }
    
    .card p {
        font-size: clamp(10px, 1.2vw, 13px);
        margin-bottom: clamp(10px, 1.5vh, 18px);
        letter-spacing: 1px;
    }
    
    .card-icon {
        font-size: clamp(24px, 3.5vw, 36px);
        margin-bottom: clamp(4px, 0.8vh, 10px);
    }
    
    .explore {
        padding: clamp(8px, 1.2vh, 12px) clamp(14px, 2vw, 22px);
        font-size: clamp(10px, 1.1vw, 13px);
        gap: clamp(6px, 0.8vw, 10px);
    }
    
    .explore svg {
        width: clamp(14px, 1.2vw, 18px);
        height: clamp(14px, 1.2vw, 18px);
    }
    
    .glow-text {
        font-size: clamp(20px, 4vw, 32px);
    }
    
    .title-line {
        margin: clamp(8px, 1.2vh, 14px) auto 0;
    }
    
    .bg-orb {
        filter: blur(60px);
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .cards {
        gap: clamp(10px, 1.8vw, 16px);
    }
    
    .card {
        min-height: clamp(160px, 28vh, 240px);
        padding: clamp(12px, 1.5vh, 18px) clamp(10px, 1.2vw, 14px);
        border-radius: clamp(14px, 1.8vw, 18px);
    }
    
    .title-box h1 {
        font-size: clamp(16px, 3.8vw, 22px);
        letter-spacing: 1px;
    }
    
    .title-box p {
        font-size: clamp(9px, 1.2vw, 11px);
        letter-spacing: 1.5px;
    }
    
    .brand-logo {
        width: clamp(50px, 12vw, 80px);
        margin-bottom: clamp(4px, 0.8vh, 8px);
    }
    
    .card h2 {
        font-size: clamp(11px, 2vw, 16px);
        letter-spacing: 0.5px;
    }
    
    .card p {
        font-size: clamp(8px, 1vw, 11px);
        margin-bottom: clamp(6px, 1vh, 12px);
        letter-spacing: 0.5px;
    }
    
    .card-icon {
        font-size: clamp(18px, 3vw, 26px);
        margin-bottom: clamp(3px, 0.5vh, 6px);
    }
    
    .explore {
        padding: clamp(6px, 0.8vh, 10px) clamp(10px, 1.5vw, 16px);
        font-size: clamp(8px, 1vw, 11px);
        gap: clamp(4px, 0.6vw, 8px);
        letter-spacing: 0.5px;
    }
    
    .explore svg {
        width: clamp(12px, 1vw, 15px);
        height: clamp(12px, 1vw, 15px);
    }
    
    .glow-text {
        font-size: clamp(16px, 3.5vw, 24px);
    }
    
    .title-line {
        height: 2px;
        margin: clamp(6px, 0.8vh, 10px) auto 0;
    }
    
    .bg-orb {
        filter: blur(40px);
        opacity: 0.3;
    }
    
    .orb-1 {
        width: min(200px, 40vw);
        height: min(200px, 40vw);
    }
    
    .orb-2 {
        width: min(180px, 35vw);
        height: min(180px, 35vw);
    }
    
    .orb-3 {
        width: min(150px, 30vw);
        height: min(150px, 30vw);
    }
    
    .grid-overlay {
        background-size: min(30px, 4vw) min(30px, 4vw);
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .cards {
        gap: 8px;
    }
    
    .card {
        min-height: 140px;
        padding: 10px 8px;
        border-radius: 12px;
    }
    
    .brand-logo {
        width: 45px;
    }
    
    .card h2 {
        font-size: 10px;
    }
    
    .card p {
        font-size: 7px;
        margin-bottom: 6px;
    }
    
    .card-icon {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .explore {
        padding: 5px 8px;
        font-size: 7px;
        gap: 4px;
    }
    
    .explore svg {
        width: 10px;
        height: 10px;
    }
    
    .title-box h1 {
        font-size: 14px;
    }
    
    .title-box p {
        font-size: 8px;
    }
    
    .glow-text {
        font-size: 14px;
    }
}

/* ===========================================
   LANDSCAPE MODE FIX
   =========================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .container {
        padding: 10px 0;
    }
    
    .title-box {
        margin-bottom: 10px;
    }
    
    .title-box h1 {
        font-size: clamp(16px, 3vh, 28px);
    }
    
    .title-box p {
        font-size: clamp(10px, 1.5vh, 14px);
    }
    
    .glow-text {
        font-size: clamp(18px, 3vh, 32px);
        margin-bottom: 2px;
    }
    
    .title-line {
        margin: 6px auto 0;
        height: 2px;
    }
    
    .card {
        min-height: clamp(140px, 40vh, 220px);
        padding: clamp(10px, 1.5vh, 20px);
    }
    
    .brand-logo {
        width: clamp(50px, 10vh, 100px);
        margin-bottom: 4px;
    }
    
    .card h2 {
        font-size: clamp(12px, 2vh, 18px);
        margin-bottom: 2px;
    }
    
    .card p {
        font-size: clamp(9px, 1.2vh, 12px);
        margin-bottom: 8px;
    }
    
    .card-icon {
        font-size: clamp(18px, 2.5vh, 30px);
        margin-bottom: 4px;
    }
    
    .explore {
        padding: clamp(6px, 0.8vh, 10px) clamp(12px, 1.5vh, 20px);
        font-size: clamp(9px, 1.2vh, 12px);
    }
    
    .explore svg {
        width: clamp(12px, 1.5vh, 16px);
        height: clamp(12px, 1.5vh, 16px);
    }
}