/* ====================================
   Global Styles & Variables
   ==================================== */
:root {
    /* Colors - Hollywood Glamour + Silicon Valley Tech */
    --gold: #D4AF37;
    --gold-light: #F4E4A8;
    --gold-dark: #B8941F;
    --purple: #4A148C;
    --purple-light: #7B1FA2;
    --purple-dark: #311B92;
    --cyan: #00BCD4;
    --cyan-light: #4DD0E1;
    --cyan-dark: #0097A7;
    --dark: #0D0221;
    --dark-light: #1A0B3F;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #9E9E9E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --gradient-cyber: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 50%, var(--cyan-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark) 0%, var(--purple-dark) 50%, var(--purple) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.5);
    --shadow-glow-cyan: 0 0 30px rgba(0, 188, 212, 0.5);
    --shadow-glow-purple: 0 0 30px rgba(74, 20, 140, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 2, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(13, 2, 33, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo i {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 20px;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-light);
    z-index: 1001;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-close {
    align-self: flex-end;
    color: var(--gold);
    font-size: 1.5rem;
    padding: 0.5rem;
}

.mobile-menu-content a {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 10% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 20s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.title-main {
    font-size: 4rem;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out;
}

.title-sub {
    font-size: 2rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.title-en {
    font-size: 1.25rem;
    color: var(--cyan-light);
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

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

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.hero-location i {
    color: var(--cyan);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 15px;
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.countdown-label {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-normal);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ====================================
   Section Headers
   ==================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   Highlights Section
   ==================================== */
.highlights {
    padding: 6rem 0;
    background: var(--dark-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow-gold);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ====================================
   Value Propositions Section
   ==================================== */
.value-props {
    padding: 6rem 0;
}

.value-section {
    margin-bottom: 6rem;
}

.value-section:last-child {
    margin-bottom: 0;
}

.value-content {
    max-width: 1200px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark);
}

.value-section-alt .value-icon {
    background: var(--gradient-cyber);
}

.value-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-tagline {
    font-size: 1.25rem;
    color: var(--cyan-light);
    font-style: italic;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.value-section-alt .value-item {
    border-color: rgba(0, 188, 212, 0.2);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.value-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-section-alt .value-item i {
    color: var(--cyan);
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ====================================
   Schedule Section
   ==================================== */
.schedule {
    padding: 6rem 0;
    background: var(--dark-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-time {
    width: 45%;
    text-align: right;
    padding-right: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-time {
    text-align: left;
    padding-right: 0;
    padding-left: 3rem;
    justify-content: flex-start;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.timeline-content > p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--gray);
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

/* ====================================
   Sponsors/Packages Section
   ==================================== */
.sponsors {
    padding: 6rem 0;
}

.packages-section {
    margin-bottom: 5rem;
}

.packages-category {
    font-size: 2rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-gold);
}

.package-premium {
    border-color: var(--cyan);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.package-featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-badge-popular {
    background: var(--gradient-gold);
    color: var(--dark);
}

.package-badge-vip {
    background: var(--gradient-cyber);
    color: var(--dark);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
}

.package-featured .package-icon {
    animation: rotate 10s linear infinite;
}

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

.package-premium .package-icon {
    background: var(--gradient-cyber);
}

.package-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.package-featured .package-features i {
    color: var(--gold);
}

.package-premium .package-features i {
    color: var(--cyan);
}

.btn-package {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: auto;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-package-featured {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn-package-premium {
    background: var(--gradient-cyber);
    color: var(--dark);
}

/* Influencer Package */
.influencer-package-section {
    background: rgba(0, 188, 212, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 5rem;
}

.influencer-package {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.influencer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.influencer-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark);
    flex-shrink: 0;
}

.influencer-info h3 {
    font-size: 1.75rem;
    color: var(--cyan-light);
    margin-bottom: 1rem;
}

.influencer-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.influencer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.influencer-feature i {
    color: var(--cyan);
    font-size: 1.25rem;
}

.btn-influencer {
    background: var(--gradient-cyber);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.btn-influencer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-cyan);
}

/* Incentives */
.incentives-section {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
}

.incentives-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.incentives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.incentive-item {
    text-align: center;
}

.incentive-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.incentive-item h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.incentive-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ====================================
   Speakers Section
   ==================================== */
.speakers {
    padding: 6rem 0;
    background: var(--dark-light);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow-gold);
}

.speaker-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark);
}

.speaker-name {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 1rem;
    color: var(--cyan-light);
    margin-bottom: 1rem;
}

.speaker-bio {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ====================================
   Registration Form Section
   ==================================== */
.registration {
    padding: 6rem 0;
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-form {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Registration Info Cards */
.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    color: var(--gray);
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cyan-light);
    padding: 0.75rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.contact-method:hover {
    background: rgba(0, 188, 212, 0.2);
}

.contact-method i {
    font-size: 1.25rem;
}

/* ====================================
   FAQ Section
   ==================================== */
.faq {
    padding: 6rem 0;
    background: var(--dark-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    color: var(--gold);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ====================================
   Venue Section
   ==================================== */
.venue {
    padding: 6rem 0;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.venue-info h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.venue-hall {
    font-size: 1.25rem;
    color: var(--cyan-light);
    margin-bottom: 2rem;
}

.venue-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.venue-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.venue-feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

.venue-feature strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.venue-feature p {
    color: var(--gray);
}

.venue-address {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 15px;
}

.venue-address i {
    font-size: 1.5rem;
    color: var(--gold);
}

.venue-address strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.venue-address p {
    color: var(--gray);
    line-height: 1.7;
}

.venue-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--dark-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-contact a {
    color: var(--gray);
    transition: var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--cyan-light);
}

.footer-organizers {
    margin-top: 1.5rem;
}

.footer-organizers p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-organizers strong {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray);
    transition: var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ====================================
   Modal
   ==================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-light);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon i {
    font-size: 3rem;
    color: var(--dark);
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-time {
        width: auto;
        padding-right: 0;
        padding-left: 80px !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(0);
    }
    
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .venue-content {
        grid-template-columns: 1fr;
    }
    
    .influencer-package {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-featured {
        transform: scale(1);
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .influencer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .language-switcher {
        flex-wrap: wrap;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-cta,
    .scroll-indicator,
    .btn,
    .footer-social {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-background {
        display: none;
    }
}