/* Custom CSS for yWhales Bitcoin & Blockchain Summit 2026 */

:root {
    --bitcoin-orange: #F7931A;
    --bitcoin-gold: #FFD700;
    --dark-bg: #0a0a0a;
    --dark-alt: #1a1a1a;
    --dark-card: #161616;
    --text-light: #ffffff;
    --text-muted: #999999;
    --accent-blue: #00d4ff;
    --gradient-primary: linear-gradient(135deg, #F7931A 0%, #FFD700 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-card: linear-gradient(145deg, #161616 0%, #1a1a1a 100%);
    --shadow-primary: 0 25px 50px rgba(247, 147, 26, 0.3);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.7);
    --glow-orange: 0 0 30px rgba(247, 147, 26, 0.4);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--gradient-bg);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.02em;
    position: relative;
}

/* Custom yWhales background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('attached_assets/2023-02-01 yWhales Communities Logo RGB DarkBlue Blue-Black_1754491267151.png');
    background-size: 600px 600px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.012;
    z-index: -1;
    pointer-events: none;
}

/* Bitcoin 2026 Logo Styles */
.bitcoin2026-logo-hero {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    filter: brightness(1.1);
}

.bitcoin2026-logo-section {
    height: 32px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    filter: brightness(1.1);
}

.bitcoin2026-logo-title {
    height: 56px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(1.1);
}

.tickets-header {
    padding: 20px 0 10px 0;
}

.bitcoin2026-logo-contact {
    height: 28px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
    filter: brightness(1.1);
}

/* Hero Vegas Logo Styles */
.hero-gathering-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-vegas-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.bitcoin2026-vegas-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 200px;
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .hero-gathering-title {
        font-size: 1.8rem;
    }
    
    .bitcoin2026-vegas-logo {
        max-height: 150px;
    }
}

/* Member Organization Section Styles */
.member-organization-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.member-option {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.1);
    margin-bottom: 0.5rem;
}

.member-option:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-1px);
}

.member-option .form-check-input {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 165, 0, 0.5);
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
}

.member-option .form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.member-option .form-check-label {
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.member-option .form-check-label i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.member-other-field,
.guest-name-field {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-other-field .form-control,
.guest-name-field .form-control {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: var(--text-light);
}

.member-other-field .form-control:focus,
.guest-name-field .form-control:focus {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.form-text.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem;
}

.form-text.text-muted i {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .member-organization-section {
        padding: 1rem;
    }
    
    .member-option {
        padding: 0.5rem 0.75rem;
    }
    
    .member-option .form-check-label {
        font-size: 0.9rem;
    }
}

/* Typography */
.section-title {
    color: var(--text-light);
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 24px auto;
    border-radius: 2px;
    box-shadow: var(--glow-orange);
}

/* Navigation Styles */
.navbar-dark {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 147, 26, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--bitcoin-orange) !important;
}

.navbar-logo {
    font-size: 1.8rem;
    color: var(--bitcoin-orange);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
    color: var(--bitcoin-gold);
    text-shadow: 0 0 15px rgba(247, 147, 26, 0.6);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--bitcoin-orange) !important;
}

/* Attendee Access Button */
.btn-attendee-access {
    background: linear-gradient(135deg, #F7931A 0%, #ff6b00 100%);
    color: #000000 !important;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-attendee-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.5);
    color: #000000 !important;
}

.btn-attendee-access:active {
    transform: translateY(0);
}

/* Sign Up Button */
.btn-signup {
    background: linear-gradient(135deg, #F7931A 0%, #ff6b00 100%) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 0.95rem !important;
}

.btn-signup:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.5) !important;
    color: #000000 !important;
}

.btn-signup:active {
    transform: translateY(0) !important;
}

/* Hero Section */
.hero-section {
    height: 85vh;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(26, 26, 26, 0.7)), 
                url('../attached_assets/generated_images/Premium_Bitcoin_conference_hero_background_6270819c.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-bg);
    opacity: 0.8;
}

.z-index-1 {
    z-index: 1;
}

.hero-title {
    color: var(--text-light);
    font-weight: 900;
    font-size: 4.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #F7931A 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* Hero yWhales Logo */
.hero-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-ywhales-logo {
    height: 180px;
    width: auto;
    max-width: 100%;
    transition: all 0.6s ease-out;
    filter: brightness(1.1) saturate(1.1);
    opacity: 0;
    transform: translateY(15px);
    margin: 0 auto;
    display: block;
}

.hero-ywhales-logo.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive sizing */
@media (max-width: 768px) {
    .hero-ywhales-logo {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .hero-ywhales-logo {
        height: 120px;
    }
}

/* Button Styles */
.btn-bitcoin {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

.btn-bitcoin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-bitcoin:hover::before {
    left: 100%;
}

.btn-bitcoin:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(247, 147, 26, 0.6);
    filter: brightness(1.1);
    color: white;
}

.btn-bitcoin:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 26, 0.5);
    color: white;
}

/* Section Styles */
.section-padding {
    padding: 40px 0;
}

.bg-dark-alt {
    background: linear-gradient(135deg, var(--dark-alt) 0%, var(--dark-bg) 50%, var(--dark-alt) 100%);
    position: relative;
}

.bg-dark-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(247, 147, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* World Map Styles */
.map-container {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.world-map {
    height: 500px;
    width: 100%;
    border-radius: 16px;
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 8px;
    padding: 12px;
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(247, 147, 26, 0.3);
    border: 1px solid var(--bitcoin-orange);
}

.legend-color.active {
    background: var(--bitcoin-orange);
    box-shadow: 0 0 10px rgba(247, 147, 26, 0.5);
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 8px;
    padding: 20px;
    z-index: 1001;
}

.map-tooltip {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 1px solid var(--bitcoin-orange) !important;
    border-radius: 8px !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

.map-tooltip::before {
    border-top-color: var(--bitcoin-orange) !important;
}

/* Mobile responsive map */
@media (max-width: 768px) {
    .world-map {
        height: 350px;
    }
    
    .map-legend {
        position: static;
        margin: 15px;
        display: inline-flex;
        justify-content: center;
    }
}

/* Sign Up Form */
.signup-form-container {
    background: var(--gradient-bg);
    border: 1px solid rgba(247, 147, 26, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-control {
    background-color: rgba(248, 249, 250, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: var(--text-light);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(248, 249, 250, 0.15);
    border-color: var(--bitcoin-orange);
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 26, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

/* Premium Card Designs */
.detail-card {
    background: var(--gradient-card);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(247, 147, 26, 0.4);
    border-color: var(--bitcoin-orange);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 35px 80px rgba(247, 147, 26, 0.5);
    border-color: var(--bitcoin-orange);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.detail-icon {
    font-size: 3.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 12px rgba(247, 147, 26, 0.5));
    margin: 0 auto;
    width: fit-content;
}

.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 12px rgba(247, 147, 26, 0.4));
}

.detail-card h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.detail-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 1;
}

.section-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Conference Ticket Cards */
.conference-ticket-card {
    background: var(--gradient-card);
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.conference-ticket-card.featured {
    border-color: var(--bitcoin-orange);
    box-shadow: 0 25px 60px rgba(247, 147, 26, 0.4);
}

.conference-ticket-card.exclusive {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a1a0a 100%);
    border-color: var(--bitcoin-gold);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 147, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

.ticket-card:hover::before {
    left: 100%;
}

.ticket-title {
    color: var(--bitcoin-orange);
    font-weight: 700;
    font-size: 2rem;
}

.ticket-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.ticket-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-title-amazing {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F7931A 0%, #FFD700 50%, #F7931A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: glow-text 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(247, 147, 26, 0.3);
    position: relative;
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(247, 147, 26, 0.4));
        text-shadow: 0 0 10px rgba(247, 147, 26, 0.2);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.7));
        text-shadow: 0 0 25px rgba(247, 147, 26, 0.4);
    }
}

.conference-ticket-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px rgba(247, 147, 26, 0.5);
}

.conference-ticket-card.exclusive:hover {
    box-shadow: 0 40px 100px rgba(255, 215, 0, 0.4);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--bitcoin-orange);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-item {
    padding: 20px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--bitcoin-orange);
}

.contact-link {
    color: var(--bitcoin-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #e6831a;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    text-align: left;
}

.contact-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--bitcoin-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.15);
    color: #ffffff;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-contact {
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, #ff6b00 100%);
    border: none;
    color: #000000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #ff6b00 0%, var(--bitcoin-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
    color: #000000;
}

.btn-contact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#contactMessage {
    font-size: 0.85rem;
    text-align: center;
}

#contactMessage.success {
    color: #75b798;
}

#contactMessage.error {
    color: #f8a2aa;
}

.footer-brand {
    color: var(--bitcoin-orange);
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Alert Styles */
.alert-success {
    background-color: rgba(25, 135, 84, 0.2);
    border-color: rgba(25, 135, 84, 0.3);
    color: #75b798;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
    color: #f8a2aa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .ticket-card {
        margin-bottom: 2rem;
    }
    
    .detail-card {
        margin-bottom: 2rem;
    }
    
    /* Mobile Navbar Button Fixes */
    .navbar-nav {
        padding: 15px 0;
        gap: 8px;
    }
    
    .navbar-nav .nav-item {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    .navbar-nav .nav-item.ms-2,
    .navbar-nav .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 8px !important;
    }
    
    .navbar-nav .btn-signup,
    .navbar-nav .btn-attendee-access {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 12px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Hero section mobile spacing */
    .hero-section {
        height: auto;
        min-height: 70vh;
        padding: 100px 0 60px;
    }
    
    .hero-vegas-logo-container {
        margin-bottom: 20px;
    }
    
    .bitcoin2026-vegas-logo {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .ticket-card {
        padding: 1.5rem !important;
    }
    
    /* Extra small mobile fixes */
    .ticket-title-amazing {
        font-size: 1.6rem;
    }
    
    .feature-category {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .btn-apply-amazing {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .bitcoin2026-logo-title {
        height: 42px;
        max-width: 180px;
    }
    
    .tickets-header {
        padding: 15px 0 8px 0;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bitcoin-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6831a;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Stat Cards for Conference Overview */
.stat-card {
    background: var(--gradient-bg);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.2);
    border-color: rgba(247, 147, 26, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--bitcoin-orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Speaker Category Cards */
.speaker-category-card {
    background: var(--gradient-bg);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.speaker-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 147, 26, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: var(--bitcoin-orange);
}

.category-title {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.speaker-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speaker-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 147, 26, 0.1);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.speaker-list li:last-child {
    border-bottom: none;
}

.speaker-list li strong {
    color: var(--text-light);
}

/* Conference Ticket Cards */
.conference-ticket-card {
    background: var(--gradient-bg);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.conference-ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.conference-ticket-card.featured {
    border-color: var(--bitcoin-orange);
    position: relative;
    transform: scale(1.05);
}

.conference-ticket-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.conference-ticket-card.exclusive {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a1a 50%, #2a1a1a 100%);
}

/* Ticket Badges */
.badge-popular,
.badge-premium,
.badge-exclusive {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bitcoin-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-premium {
    background: #ffd700;
    color: #1a1a1a;
}

.badge-exclusive {
    background: #ff6b35;
}

/* Ticket Styling */
.ticket-title {
    color: var(--bitcoin-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.conference-ticket-card.featured .ticket-title {
    color: var(--bitcoin-orange);
}

.conference-ticket-card.premium .ticket-title {
    color: #ffd700;
}

.conference-ticket-card.exclusive .ticket-title {
    color: #ff6b35;
}

.ticket-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ticket-features .feature-item {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.ticket-features .feature-item i {
    color: var(--bitcoin-orange);
    width: 20px;
}

/* Outline Bitcoin Button */
.btn-outline-bitcoin {
    background-color: transparent;
    border: 2px solid var(--bitcoin-orange);
    color: var(--bitcoin-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-bitcoin:hover {
    background-color: var(--bitcoin-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.4);
}

.btn-outline-bitcoin:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 26, 0.5);
    color: var(--bitcoin-orange);
}

/* Venue Cards */
.venue-info-card {
    background: var(--gradient-bg);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.venue-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 147, 26, 0.3);
}

.venue-icon {
    font-size: 2.5rem;
    color: var(--bitcoin-orange);
}

.venue-info-card h4 {
    color: var(--text-light);
    font-weight: 600;
}

.venue-details .detail-row,
.amenity-list .amenity-item {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.amenity-list .amenity-item {
    display: flex;
    align-items: center;
}

.amenity-list .amenity-item i {
    color: var(--bitcoin-orange);
    width: 20px;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .conference-ticket-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .speaker-list li {
        font-size: 0.85rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .speaker-category-card {
        margin-bottom: 2rem;
    }
    
    .conference-ticket-card {
        margin-bottom: 2rem;
        padding: 1.5rem !important;
    }
}

/* Bitcoin Price History Section Styles */
.price-chart-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.2);
}

.chart-image {
    transition: all 0.3s ease;
}

.chart-image:hover {
    transform: scale(1.05);
}

.price-milestones h3 {
    color: var(--bitcoin-orange);
    font-weight: 700;
}

.milestone-timeline {
    position: relative;
    padding-left: 20px;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--bitcoin-orange), rgba(247, 147, 26, 0.3));
    border-radius: 2px;
}

.milestone-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--bitcoin-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--dark-bg);
}

.milestone-year {
    font-weight: 700;
    color: var(--bitcoin-orange);
    font-size: 1.1rem;
}

.milestone-price {
    font-weight: 900;
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 2px 0;
}

.milestone-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Attendees Section Styles */
.attendees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.attendee-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.attendee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bitcoin-orange), #ffb84d);
}

.attendee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(247, 147, 26, 0.2);
    border-color: rgba(247, 147, 26, 0.3);
}

.attendee-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--bitcoin-orange), #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attendee-country {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.attendee-country i {
    color: var(--bitcoin-orange);
}

.attendee-ypo {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--bitcoin-orange);
    font-weight: 600;
    display: inline-block;
}

.attendee-ypo.no-chapter {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-style: italic;
}

.attendees-stats {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(247, 147, 26, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(247, 147, 26, 0.1);
}

/* Dynamic Progress Bar Styles */
.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 0.5rem;
}

.progress-bar-background {
    position: relative;
    width: 100%;
    height: 40px;
    background: #2a2a2a;
    border-radius: 20px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #444;
}

.progress-bar-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #FFA500 0%, #FF4500 100%);
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressJiggle 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

.progress-bar-glow {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 50px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 165, 0, 0.8) 0%, 
        rgba(255, 69, 0, 0.6) 50%, 
        transparent 100%);
    border-radius: 50%;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-particles {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
}

.progress-particles::before,
.progress-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFA500;
    border-radius: 50%;
    animation: particleBurst 1.5s ease-out infinite;
}

.progress-particles::before {
    animation-delay: 0s;
}

.progress-particles::after {
    animation-delay: 0.75s;
    left: -6px;
}

.progress-goal-wall {
    position: absolute;
    top: -5px;
    right: -2px;
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #666 0%, #333 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.goal-crack {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, transparent 0%, #FFA500 20%, #FF4500 50%, #FFA500 80%, transparent 100%);
    animation: crackPulse 2s ease-in-out infinite;
    opacity: 0.6;
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.progress-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bitcoin-orange);
    letter-spacing: 0.5px;
}

/* Keyframe Animations */
@keyframes progressJiggle {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(2px); }
    50% { transform: translateX(0px); }
    75% { transform: translateX(-1px); }
}

@keyframes progressGlow {
    0% { 
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 165, 0, 0.8);
    }
}

@keyframes particleBurst {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(15px) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translateX(30px) scale(0.3);
        opacity: 0;
    }
}

@keyframes crackPulse {
    0%, 100% { 
        opacity: 0.3;
        width: 2px;
    }
    50% { 
        opacity: 0.8;
        width: 3px;
    }
}

/* Goal Wall Impact Ripples */
.progress-bar-fill[style*="100%"] .progress-bar-glow::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -15px;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    animation: rippleEffect 1s ease-out infinite;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-bar-background {
        height: 35px;
    }
    
    .progress-count {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .progress-count {
        font-size: 0.9rem;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: rgba(247, 147, 26, 0.3);
    box-shadow: 0 12px 35px rgba(247, 147, 26, 0.1);
}

.faq-item.active {
    border-color: rgba(247, 147, 26, 0.4);
    box-shadow: 0 12px 35px rgba(247, 147, 26, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.3s ease;
    outline: none;
    position: relative;
}

.faq-question:hover {
    color: var(--bitcoin-orange);
}

.faq-question:focus {
    color: var(--bitcoin-orange);
}

.faq-question-text {
    flex-grow: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bitcoin-orange), #ffb84d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer.show {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    animation: fadeInAnswer 0.5s ease-in-out;
}

.faq-answer-content h3,
.faq-answer-content h4,
.faq-answer-content h5 {
    color: var(--bitcoin-orange);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: var(--text-light);
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.25rem;
}

.faq-answer-content a {
    color: var(--bitcoin-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: #ffb84d;
    text-decoration: underline;
}

.faq-answer-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Loading States */
#faqLoading {
    color: var(--text-muted);
}

#faqLoading i {
    color: var(--bitcoin-orange);
}

/* FAQ Animations */
@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accordionPulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(247, 147, 26, 0.2);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

.faq-item:hover {
    animation: accordionPulse 2s ease-in-out infinite;
}

.faq-item.active:hover {
    animation: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-toggle-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-question-text {
        margin-right: 0.5rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .attendees-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .attendee-card {
        padding: 1.25rem;
    }
    
    .attendee-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .attendees-grid {
        grid-template-columns: 1fr;
    }
}

/* Growth Statistics Cards */
.growth-stat-card {
    background: var(--gradient-bg);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.growth-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 147, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

.growth-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(247, 147, 26, 0.3);
    border-color: var(--bitcoin-orange);
}

.growth-stat-card:hover::before {
    left: 100%;
}

.growth-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bitcoin-orange);
    margin-bottom: 10px;
}

.growth-label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Enhanced Scroll Animations */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-attachment: fixed;
    z-index: -1;
}

/* Premium Glassmorphism Effects */
.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Glow Effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

/* Bitcoin Symbol Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.floating-bitcoin {
    animation: float 6s ease-in-out infinite;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(45deg, var(--bitcoin-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Button Variations */
.btn-premium {
    background: linear-gradient(45deg, var(--bitcoin-orange), #ff8c42);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 26, 0.6);
    color: white;
}

/* Global Section Padding - Video Game Style */
.section-padding {
    padding: 25px 0;
    position: relative;
}

/* Premium Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Premium Badge Styles */
.badge-popular, .badge-exclusive, .badge-premium {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    animation: glow-pulse 3s ease-in-out infinite;
}

.badge-popular {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.6);
}

.badge-exclusive {
    background: linear-gradient(135deg, var(--bitcoin-gold) 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    font-weight: 800;
}

.badge-premium {
    background: linear-gradient(135deg, #8B0000 0%, #FF4500 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

/* Feature Category Styling */
.feature-category {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Speaker Cards */
.speaker-category {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.speaker-names {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Enhanced Feature Items */
.feature-item {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.ticket-description {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
}

.price-subtitle {
    color: #b0b0b0;
    font-weight: 500;
}

/* Venue Section Text */
.venue-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.detail-label {
    color: #ffffff;
    font-weight: 600;
}

.detail-value {
    color: #e0e0e0;
    font-weight: 400;
}

.amenity-text {
    color: #ffffff;
    font-weight: 500;
}

.venue-info-card h4 {
    color: #ffffff;
    font-weight: 700;
}

/* Upgrade Section Styling */
.upgrade-section {
    background: rgba(247, 147, 26, 0.08) !important;
    border: 2px solid rgba(247, 147, 26, 0.25) !important;
    border-radius: 15px !important;
}

.upgrade-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upgrade-description {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

.whale-feature-item {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.upgrade-total {
    color: var(--bitcoin-orange);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Contact Section Text */
.contact-item h5 {
    color: #ffffff;
    font-weight: 700;
}

.contact-link {
    color: var(--bitcoin-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--bitcoin-gold);
    text-decoration: none;
}

/* Footer text readability */
.footer-info p {
    color: #ffffff;
    font-weight: 500;
}

.footer-brand {
    color: #ffffff;
    font-weight: 700;
}

.text-muted {
    color: #e0e0e0 !important;
    opacity: 1;
}

/* Application Form Styling */
.application-form-card {
    background: var(--gradient-card);
    border-radius: 20px;
    border: 2px solid rgba(247, 147, 26, 0.2);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.application-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(247, 147, 26, 0.2);
}

.form-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.form-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 16px auto 24px;
    border-radius: 2px;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 10px;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--bitcoin-orange);
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.3);
    color: #ffffff;
    outline: none;
}

.form-control::placeholder {
    color: #888;
}

select.form-control {
    cursor: pointer;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.submit-loading {
    display: none;
}

#submitApplication:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Bold Exclusive Button Styling */
.btn-exclusive {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 30px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(247, 147, 26, 0.4);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    font-family: inherit;
}

.btn-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-exclusive:hover::before {
    left: 100%;
}

.btn-exclusive:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(247, 147, 26, 0.7);
    background: linear-gradient(135deg, #F7931A 0%, #FFB84D 50%, #F7931A 100%);
    color: white;
    font-weight: 900;
}

.btn-exclusive:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 26, 0.5);
    color: white;
    outline: none;
}

.btn-exclusive:active {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 30px rgba(247, 147, 26, 0.6);
}

/* Loading state styling */
.btn-exclusive .submit-loading {
    color: white;
    font-weight: 700;
}

/* Enhanced button text */
.btn-exclusive .submit-text {
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Amazing Apply Button */
.btn-apply-amazing {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #F7931A 0%, #FFB84D 50%, #F7931A 100%);
    background-size: 200% 200%;
    color: #000000;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 15px 50px rgba(247, 147, 26, 0.5), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
}

.btn-apply-amazing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: shimmer-amazing 3s infinite;
    pointer-events: none;
}

.btn-apply-amazing .btn-amazing-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-apply-amazing:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 25px 70px rgba(247, 147, 26, 0.8), 0 0 30px rgba(247, 147, 26, 0.6), inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    background-position: 200% center;
    letter-spacing: 3px;
}

.btn-apply-amazing:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(247, 147, 26, 0.7), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-apply-amazing:hover i {
    animation: icon-bounce 0.6s ease-in-out;
}

@keyframes shimmer-amazing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.5;
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    75% {
        transform: translateX(4px);
    }
}

.section-padding::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .growth-number {
        font-size: 2rem;
    }
    
    .milestone-price {
        font-size: 1.1rem;
    }
    
    .price-chart-container {
        margin-bottom: 2rem;
    }
    
    .section-padding {
        padding: 15px 0;
    }
}

/* Speaker Collage Styles */
.speaker-collage-container {
    position: relative;
}

.speaker-collage {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(247, 147, 26, 0.4);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.speaker-collage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.speaker-collage:hover::before {
    opacity: 1;
}

.speaker-collage:hover {
    transform: scale(1.03) rotateY(2deg);
    border-color: var(--bitcoin-orange);
    box-shadow: 0 40px 120px rgba(247, 147, 26, 0.4);
}

.speaker-highlight-card {
    background: var(--gradient-card);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.speaker-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.4;
}

.speaker-highlight-card:hover {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: var(--bitcoin-orange);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(247, 147, 26, 0.3);
}

/* World Map Styles */
.map-container {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(247, 147, 26, 0.15);
    border: 2px solid rgba(247, 147, 26, 0.2);
    margin-bottom: 20px;
}

#worldMap {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(247, 147, 26, 0.3);
    background: #0a0a0a;
}

.map-legend {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
}

.legend-color {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-color.active {
    background: #F7931A;
    box-shadow: 0 0 8px rgba(247, 147, 26, 0.5);
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F7931A;
    font-size: 16px;
    z-index: 1001;
    background: rgba(26, 26, 26, 0.9);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(247, 147, 26, 0.3);
}

/* Leaflet Map Overrides */
.leaflet-container {
    background: #0a0a0a !important;
}

.leaflet-control-zoom {
    border: 1px solid rgba(247, 147, 26, 0.3) !important;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
}

.leaflet-control-zoom a {
    background: rgba(26, 26, 26, 0.95) !important;
    color: #F7931A !important;
    border: 1px solid rgba(247, 147, 26, 0.2) !important;
    font-weight: bold;
    font-size: 18px;
}

.leaflet-control-zoom a:hover {
    background: rgba(247, 147, 26, 0.2) !important;
    color: #ffffff !important;
}

.leaflet-popup-content-wrapper {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(247, 147, 26, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(247, 147, 26, 0.2) !important;
}

.leaflet-popup-tip {
    background: #1a1a1a !important;
    border: 1px solid rgba(247, 147, 26, 0.3) !important;
}

.leaflet-popup-close-button {
    color: #F7931A !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.leaflet-popup-close-button:hover {
    color: #ffffff !important;
}

.map-tooltip {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(247, 147, 26, 0.5) !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 16px rgba(247, 147, 26, 0.3) !important;
}

/* Country styling on the map */
.country-with-attendees {
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-with-attendees:hover {
    filter: brightness(1.3) !important;
}

/* Mobile responsive map */
@media (max-width: 768px) {
    #worldMap {
        height: 350px;
    }
    
    .map-container {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .map-legend {
        top: 20px;
        right: 20px;
        padding: 8px 12px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .legend-color {
        width: 16px;
        height: 12px;
    }
}

/* Sponsor Section Styles */
.sponsor-section {
    background: var(--gradient-card);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sponsor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(247, 147, 26, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.sponsor-section:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateX(100%);
}

.sponsor-section:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 147, 26, 0.4);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.3);
}

.sponsor-title {
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

/* Custom Animated Checkbox */
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sponsor-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sponsor-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(247, 147, 26, 0.2);
}

.sponsor-checkbox-label:hover {
    background: rgba(247, 147, 26, 0.08);
    border-color: rgba(247, 147, 26, 0.4);
    transform: translateY(-2px);
}

.checkbox-icon {
    margin-right: 1rem;
    position: relative;
}

.checkbox-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 3px solid rgba(247, 147, 26, 0.3);
    border-radius: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkbox-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
}

.checkbox-tick {
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: scale(0) rotate(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    position: relative;
}

.checkbox-tick path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Checked State Animations */
.sponsor-checkbox:checked + .sponsor-checkbox-label .checkbox-box {
    background: var(--gradient-primary);
    border-color: var(--bitcoin-orange);
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(247, 147, 26, 0.6),
        0 0 40px rgba(247, 147, 26, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: checkboxPulse 0.6s ease-out;
}

.sponsor-checkbox:checked + .sponsor-checkbox-label .checkbox-box::before {
    opacity: 1;
    transform: scale(1);
}

.sponsor-checkbox:checked + .sponsor-checkbox-label .checkbox-tick {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.sponsor-checkbox:checked + .sponsor-checkbox-label .checkbox-tick path {
    stroke-dashoffset: 0;
    animation: drawTick 0.6s ease-out 0.2s both;
}

.sponsor-checkbox:checked + .sponsor-checkbox-label {
    background: rgba(247, 147, 26, 0.15);
    border-color: var(--bitcoin-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 147, 26, 0.25);
}

.sponsor-checkbox:checked + .sponsor-checkbox-label .sponsor-checkbox-text {
    color: var(--bitcoin-orange);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(247, 147, 26, 0.3);
}

/* Keyframes */
@keyframes checkboxPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.25); }
}

@keyframes drawTick {
    0% { 
        stroke-dashoffset: 20;
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.sponsor-checkbox-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* Company Field Styles */
.sponsor-company-field {
    animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: top;
    margin-top: 1rem;
}

.sponsor-company-field.d-none {
    animation: slideUp 0.3s ease-out forwards;
}

.sponsor-company-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(247, 147, 26, 0.3) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.sponsor-company-input:focus {
    background: rgba(247, 147, 26, 0.1) !important;
    border-color: var(--bitcoin-orange) !important;
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.2) !important;
    transform: translateY(-2px) !important;
}

.sponsor-company-input::placeholder {
    color: var(--text-muted) !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scaleY(0);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        max-height: 100px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        max-height: 100px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scaleY(0);
        max-height: 0;
    }
}

/* Sponsor Details Card */
.sponsor-details {
    animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: top;
}

.sponsor-details.d-none {
    animation: slideUp 0.3s ease-out forwards;
}

.sponsor-info-card {
    background: linear-gradient(145deg, rgba(247, 147, 26, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(247, 147, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sponsor-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(247, 147, 26, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sponsor-info-card:hover::before {
    opacity: 0.1;
}

.sponsor-info-title {
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.sponsor-benefits {
    padding: 0 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 147, 26, 0.1);
    transition: all 0.2s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    background: rgba(247, 147, 26, 0.05);
    border-radius: 8px;
    padding-left: 8px;
    margin-left: -8px;
    margin-right: -8px;
}

.benefit-item i {
    color: var(--bitcoin-orange);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(247, 147, 26, 0.5));
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.benefit-item strong {
    color: var(--bitcoin-orange);
    font-weight: 700;
}

/* Single Ticket Info Styling */
.single-ticket-info {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.8));
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.single-ticket-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: shimmer 3s infinite;
}

.ticket-info-title {
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ticket-info-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ticket-price-display {
    padding: 1rem 0;
}

.base-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.price-description {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Amazing Whale Upgrade Checkbox */
.whale-upgrade-section {
    background: linear-gradient(145deg, rgba(16, 16, 16, 0.9), rgba(26, 26, 26, 0.95));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whale-upgrade-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.whale-upgrade-section:hover::before {
    opacity: 1;
}

.whale-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
}

.whale-checkbox-wrapper:hover {
    transform: translateY(-2px);
}

.whale-checkbox-input {
    display: none;
}

.whale-checkbox-visual {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.whale-checkbox-visual::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #FFD700, #F7931A, #FFD700);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whale-checkbox-input:checked + .whale-checkbox-label .whale-checkbox-visual::before {
    opacity: 1;
}

.whale-checkbox-inner {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whale-crown-icon {
    font-size: 1.8rem;
    color: rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whale-checkbox-input:checked + .whale-checkbox-label .whale-checkbox-visual {
    border-color: #FFD700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(247, 147, 26, 0.1));
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.whale-checkbox-input:checked + .whale-checkbox-label .whale-crown-icon {
    color: #FFD700;
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    from {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
        transform: rotate(15deg) scale(1.1);
    }
    to {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
        transform: rotate(15deg) scale(1.15);
    }
}

.whale-upgrade-content {
    flex: 1;
    padding-top: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whale-upgrade-title {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #FFD700, #F7931A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.whale-checkbox-input:checked + .whale-checkbox-label .whale-upgrade-title {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.whale-upgrade-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Whale Features Preview */
.whale-features-preview {
    animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whale-features-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(247, 147, 26, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.whale-features-title {
    color: var(--text-light);
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #F7931A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 1.1rem;
}

.whale-feature-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.whale-feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding-left: 8px;
    margin-left: -8px;
    margin-right: -8px;
}

.whale-feature-item i {
    color: #FFD700;
    margin-right: 12px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.whale-feature-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* Terms and Conditions Section */
.terms-section {
    background: var(--gradient-card);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(247, 147, 26, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.terms-section:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateX(100%);
}

.terms-section:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 147, 26, 0.4);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.3);
}

.terms-title {
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.terms-content {
    margin-bottom: 1.5rem;
}

.terms-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.terms-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(247, 147, 26, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.terms-item:hover {
    background: rgba(247, 147, 26, 0.05);
    border-color: rgba(247, 147, 26, 0.2);
    transform: translateX(5px);
}

.terms-subtitle {
    color: var(--bitcoin-orange);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.terms-subtitle i {
    margin-right: 8px;
    font-size: 1rem;
}

.terms-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.terms-footer {
    background: linear-gradient(145deg, rgba(247, 147, 26, 0.15), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(247, 147, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.terms-footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Terms Checkbox Styling */
.terms-checkbox-container {
    margin-top: 1.5rem;
}

.terms-checkbox {
    display: none;
}

.terms-checkbox-label {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(247, 147, 26, 0.25);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.terms-checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.terms-checkbox-label:hover::before {
    opacity: 1;
    animation: shimmerSlide 0.6s ease-in-out;
}

.terms-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(247, 147, 26, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 147, 26, 0.2);
}

.checkbox-icon {
    position: relative;
    margin-right: 14px;
    flex-shrink: 0;
}

.checkbox-box {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(247, 147, 26, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
}

.terms-checkbox:checked + .terms-checkbox-label .checkbox-box {
    background: linear-gradient(135deg, #F7931A, #FFD700);
    border-color: #F7931A;
    animation: pulseGlow 0.5s ease-out;
    box-shadow: 
        0 0 20px rgba(247, 147, 26, 0.6),
        0 0 40px rgba(247, 147, 26, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.checkbox-tick {
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: scale(0.3) rotate(-45deg);
    transition: all 0.3s ease;
}

.checkbox-tick path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

.terms-checkbox:checked + .terms-checkbox-label {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(255, 215, 0, 0.1));
    border-color: var(--bitcoin-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(247, 147, 26, 0.35),
        0 0 60px rgba(247, 147, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: checkboxBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.terms-checkbox:checked + .terms-checkbox-label .checkbox-tick {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: tickBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.terms-checkbox:checked + .terms-checkbox-label .checkbox-tick path {
    stroke-dashoffset: 0;
    animation: drawTick 0.6s ease-out 0.35s both;
}

.terms-checkbox:checked + .terms-checkbox-label .terms-checkbox-text {
    color: var(--bitcoin-orange);
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(247, 147, 26, 0.5),
        0 0 20px rgba(247, 147, 26, 0.3);
    animation: textGlow 0.5s ease-out 0.1s both;
}

.terms-checkbox-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Keyframe Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 
            0 0 5px rgba(247, 147, 26, 0.3),
            0 0 10px rgba(247, 147, 26, 0.2);
        transform: scale(0.9);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(247, 147, 26, 0.8),
            0 0 60px rgba(247, 147, 26, 0.5);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(247, 147, 26, 0.6),
            0 0 40px rgba(247, 147, 26, 0.4);
        transform: scale(1);
    }
}

@keyframes checkboxBounce {
    0% {
        transform: translateY(0) scale(0.95);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
    100% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes tickBounce {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 
            0 0 0px rgba(247, 147, 26, 0),
            0 0 0px rgba(247, 147, 26, 0);
        transform: translateX(-5px);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(247, 147, 26, 0.8),
            0 0 40px rgba(247, 147, 26, 0.4);
        transform: translateX(0);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(247, 147, 26, 0.5),
            0 0 20px rgba(247, 147, 26, 0.3);
        transform: translateX(0);
    }
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
