/* ============================================================
   GETON DEAL — 3D HERO STYLES (Gold Privilege Pass Aesthetic)
   ============================================================ */

/* Main Hero Container */
.hero-3d-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(135deg, #070A10 0%, #0D1424 45%, #151D33 100%);
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0 70px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Background Glowing Elements */
.hero-3d-bg-glow-1 {
    position: absolute;
    top: -10%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.hero-3d-bg-glow-2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(27, 95, 170, 0.18) 0%, rgba(27, 95, 170, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

.hero-3d-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Text Column */
.hero-3d-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #F3E5AB;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-3d-badge i {
    color: #FFD700;
    font-size: 0.95rem;
    animation: goldShimmer 2.5s infinite linear;
}

@keyframes goldShimmer {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

.hero-3d-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.hero-3d-title-highlight {
    background: linear-gradient(135deg, #FFF5C0 0%, #F5D77F 40%, #D4AF37 80%, #AA771C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-3d-desc {
    font-size: 1.08rem;
    color: rgba(240, 244, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 580px;
    font-weight: 400;
}

/* Feature Perks Pills */
.hero-3d-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-3d-perk-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-3d-perk-item i {
    color: #E5C158;
}

/* CTA Buttons */
.hero-3d-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D77F 50%, #B38728 100%);
    color: #070A10;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    color: #000;
    filter: brightness(1.08);
}

.btn-gold-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 13px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.6);
    color: #FFE699;
    transform: translateY(-2px);
}

/* Right 3D Canvas Column */
.hero-3d-canvas-col {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: visible;
}

#hero-3d-canvas {
    width: 100% !important;
    height: 100% !important;
    outline: none;
    cursor: grab;
    display: block;
}

#hero-3d-canvas:active {
    cursor: grabbing;
}

/* Floating Status Pill */
.hero-3d-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 20, 36, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #F5D77F;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 5;
    pointer-events: none;
}

.hero-3d-card-tag .dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #22C55E;
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

/* Interactivity Prompt */
.hero-3d-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(7, 10, 16, 0.7);
    padding: 4px 14px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    white-space: nowrap;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Fallback 2D Privilege Card */
.hero-3d-fallback-card {
    display: none;
    width: 360px;
    height: 220px;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(135deg, #1C1917 0%, #292524 40%, #15110E 100%);
    border: 2px solid #D4AF37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.2);
    padding: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    color: #FFF;
    overflow: hidden;
}

.hero-3d-fallback-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(212, 175, 55, 0.12) 50%, transparent 55%);
    transform: rotate(30deg);
}

.fallback-card-chip {
    width: 44px;
    height: 32px;
    background: linear-gradient(135deg, #FFE082, #CA8A04);
    border-radius: 6px;
    border: 1px solid #FEF08A;
}

.fallback-card-number {
    font-family: monospace;
    font-size: 1.15rem;
    letter-spacing: 3px;
    color: #F5D77F;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.fallback-card-holder {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fallback-card-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.fallback-card-logo {
    font-weight: 900;
    font-size: 0.9rem;
    color: #D4AF37;
    letter-spacing: 1px;
}

/* Fallback visibility rules */
.no-webgl #hero-3d-canvas,
.no-webgl .hero-3d-hint,
.reduced-motion #hero-3d-canvas,
.reduced-motion .hero-3d-hint {
    display: none !important;
}

.no-webgl .hero-3d-fallback-card,
.reduced-motion .hero-3d-fallback-card {
    display: flex !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-3d-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-3d-text-col {
        align-items: center;
    }

    .hero-3d-desc {
        max-width: 100%;
    }

    .hero-3d-perks {
        justify-content: center;
    }

    .hero-3d-actions {
        justify-content: center;
    }

    .hero-3d-canvas-col {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .hero-3d-section {
        padding: 40px 0 50px;
        min-height: auto;
    }

    .hero-3d-badge {
        font-size: 0.74rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-3d-title {
        font-size: 2rem;
    }

    .hero-3d-desc {
        font-size: 0.95rem;
    }

    .hero-3d-canvas-col {
        height: 320px;
    }

    .hero-3d-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-gold-primary,
    .btn-gold-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-3d-fallback-card {
        width: 100%;
        height: 200px;
    }
}

/* Accessibility Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    #hero-3d-canvas,
    .hero-3d-hint {
        display: none !important;
    }

    .hero-3d-fallback-card {
        display: flex !important;
    }
}

/* ============================================================
   GETON DEAL — LUXURY PHYSICAL MEMBERSHIP CARDS (Exact Image 1)
   ============================================================ */

.physical-card-section {
    background: #080A12;
    background-image: radial-gradient(circle at 50% 15%, #182035 0%, #060810 80%);
    color: #FFFFFF;
    padding: 85px 0 100px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
}

.physical-card-header-v2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.brand-main-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.brand-main-logo img {
    height: 52px;
    width: auto;
}

.brand-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gold-divider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
}

.gold-line {
    height: 1px;
    width: 140px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    position: relative;
}

.gold-line::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #FFE082;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD700;
}

.gold-divider-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: #F5D77F;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* 3D Physical Cards Grid */
.physical-cards-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1600px;
    position: relative;
    z-index: 2;
}

.physical-card-v2 {
    position: relative;
    width: 100%;
    min-height: 610px;
    border-radius: 28px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 1.5px 1.5px rgba(255, 255, 255, 0.6);
    will-change: transform;
    cursor: pointer;
}

/* Smooth Metallic Wave Background Overlay */
.card-wave-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 65%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

/* Metallic Specular Glare Tracking */
.card-specular-glare {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.physical-card-v2:hover .card-specular-glare {
    opacity: 1;
}

/* Sleek Corner Ribbon */
.ribbon-corner {
    position: absolute;
    top: 28px;
    right: -42px;
    width: 155px;
    transform: rotate(45deg);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 6;
}

/* SILVER CARD COLOR THEME */
.card-silver-theme {
    background: linear-gradient(140deg, #E2E8F0 0%, #FFFFFF 25%, #CBD5E1 55%, #94A3B8 80%, #F1F5F9 100%);
    border: 2.5px solid #E2E8F0;
    color: #1E293B;
}

.card-silver-theme .ribbon-corner {
    background: linear-gradient(135deg, #94A3B8 0%, #475569 100%);
    color: #FFFFFF;
}

.card-silver-theme .title-main {
    color: #334155;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.card-silver-theme .feat-item {
    color: #334155;
}

.card-silver-theme .feat-item i {
    color: #1E293B;
}

.card-silver-theme .price-num {
    color: #0F172A;
}

.card-silver-theme .serial-text {
    color: #64748B;
}

/* GOLD CARD COLOR THEME */
.card-gold-theme {
    background: linear-gradient(140deg, #FFE885 0%, #FFF5C0 20%, #D4AF37 50%, #9A721C 80%, #F5D77F 100%);
    border: 2.5px solid #F5D77F;
    color: #451A03;
    box-shadow: 0 30px 65px rgba(212, 175, 55, 0.35), inset 0 1.5px 2px rgba(255, 255, 255, 0.8);
}

.card-gold-theme .ribbon-corner {
    background: linear-gradient(135deg, #D4AF37 0%, #78350F 100%);
    color: #FFFFFF;
}

.card-gold-theme .title-main {
    color: #78350F;
    text-shadow: 0 1px 2px rgba(255, 245, 192, 0.9);
}

.card-gold-theme .feat-item {
    color: #451A03;
}

.card-gold-theme .feat-item i {
    color: #78350F;
}

.card-gold-theme .price-num {
    color: #78350F;
}

.card-gold-theme .serial-text {
    color: #92400E;
}

/* PLATINUM CARD COLOR THEME */
.card-platinum-theme {
    background: linear-gradient(140deg, #1E293B 0%, #0F172A 35%, #020617 75%, #334155 100%);
    border: 2.5px solid rgba(212, 175, 55, 0.45);
    color: #F8FAFC;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8), inset 0 1.5px 1.5px rgba(255, 255, 255, 0.25);
}

.card-platinum-theme .ribbon-corner {
    background: linear-gradient(135deg, #E2E8F0 0%, #64748B 100%);
    color: #0F172A;
}

.card-platinum-theme .title-main {
    color: #F8FAFC;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}

.card-platinum-theme .feat-item {
    color: #CBD5E1;
}

.card-platinum-theme .feat-item i {
    color: #F8FAFC;
}

.card-platinum-theme .price-num {
    color: #FFFFFF;
}

.card-platinum-theme .serial-text {
    color: #94A3B8;
}

/* Internal Card Typography & Alignment (Exact Image 1) */
.card-top-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.card-brand-logo-img {
    height: 32px;
    width: auto;
}

.card-center-title {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 3;
}

.title-main {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.title-divider::before,
.title-divider::after {
    content: '';
    height: 1px;
    width: 45px;
    background: currentColor;
    opacity: 0.5;
}

.title-sub {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.card-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    position: relative;
    z-index: 3;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.feat-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.card-price-v2 {
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 3;
}

.price-tag-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.price-num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 4px 0 2px;
}

.price-sub-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.serial-text {
    font-family: monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-align: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 3;
}

/* 3D Interactive Card Button */
.btn-card-action {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transform: translateZ(20px);
}

.btn-card-action:hover {
    transform: translateZ(30px) translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Responsive Physical Cards Grid */
@media (max-width: 992px) {
    .physical-cards-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}