/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

.about-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #2563eb;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Event Info Section */
.event-info {
    padding: 6rem 0;
    background: white;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.event-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-item i {
    color: #2563eb;
    font-size: 1.2rem;
}

.time-zones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-zones div {
    font-size: 1rem;
    line-height: 1.4;
}

.event-agenda h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.event-agenda ul {
    list-style: none;
}

.event-agenda li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
}

.event-agenda li i {
    color: #2563eb;
}

.event-visual {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card.featured {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
    color: #fbbf24;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.reward-icon {
    font-size: 2rem;
}

.benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

/* Old prize-item styles removed - now using unified benefit-item styles */

/* Support Section */
.support {
    padding: 6rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-item i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.support-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.support-item p {
    color: #666;
    line-height: 1.6;
}

/* Target Audience Section */
.target-audience {
    padding: 6rem 0;
    background: #f8fafc;
}

.audience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.checklist {
    margin-top: 2rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.check-item i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.audience-visual {
    display: flex;
    justify-content: center;
}

.professional-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

/* Registration Section */
.registration {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.registration-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.urgency-badge i {
    animation: fire-flicker 1.5s infinite alternate;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
        transform: scale(1.05);
    }
}

@keyframes fire-flicker {
    0% { transform: rotate(-2deg) scale(1); }
    100% { transform: rotate(2deg) scale(1.1); }
}

.registration-benefits {
    margin: 2rem 0;
}

.reg-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reg-benefit i {
    color: #10b981;
    font-size: 1.2rem;
}

.registration-cta {
    margin-top: 2rem;
}

.pulse-animation {
    animation: pulse-button 2s infinite;
    position: relative;
    overflow: hidden;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pulse-animation:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
        transform: translateY(-3px);
    }
}

.qr-code-section {
    text-align: center;
}

.qr-code {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-code img {
    width: 200px;
    height: 200px;
}

.qr-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.brand-mission {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix hero section padding to prevent header overlap */
    .hero {
        padding-top: 80px; /* Add padding to account for fixed header */
        min-height: calc(100vh - 80px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Grid layouts to single column */
    .event-content,
    .audience-content,
    .registration-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Navigation improvements */
    .nav {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Card grids */
    .benefits-grid,
    .support-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Card padding adjustments */
    .about-card,
    .benefit-card,
    .support-item {
        padding: 1.5rem;
    }
    
    /* Registration section mobile optimization */
    .registration-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .urgency-badge {
        align-self: center;
    }
    
    .qr-code {
        padding: 1.5rem;
    }
    
    .qr-code img {
        width: 180px;
        height: 180px;
    }
    
    /* Time zones mobile layout */
    .time-zones {
        gap: 0.3rem;
    }
    
    .time-zones div {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-card,
    .benefit-card {
        padding: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Mobile navigation */
    .nav {
        padding: 0.6rem 1rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Mobile cards */
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-card h3,
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .support-item {
        padding: 1.2rem;
    }
    
    .support-item i {
        font-size: 2.5rem;
    }
    
    .support-item h4 {
        font-size: 1.1rem;
    }
    
    /* Mobile registration */
    .registration {
        padding: 4rem 0;
    }
    
    .registration-header {
        text-align: center;
    }
    
    .urgency-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .qr-code {
        padding: 1rem;
    }
    
    .qr-code img {
        width: 160px;
        height: 160px;
    }
    
    .qr-text {
        font-size: 1rem;
    }
    
    /* Mobile footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .footer-contact h4 {
        font-size: 1.1rem;
    }
}

/* Additional enhancements for better visual appeal */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced card hover effects */
.about-card,
.benefit-card,
.support-item {
    position: relative;
    overflow: hidden;
}

.about-card::before,
.benefit-card::before,
.support-item::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;
}

.about-card:hover::before,
.benefit-card:hover::before,
.support-item:hover::before {
    left: 100%;
}

/* Enhanced section transitions */
.about,
.event-info,
.benefits,
.support,
.target-audience {
    position: relative;
}

.about::before,
.event-info::before,
.benefits::before,
.support::before,
.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

/* Improved button interactions */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-primary:hover::after {
    width: 200px;
    height: 200px;
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}
/* Lang
uage Switcher Styles */
.language-switcher {
    display: flex;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    padding: 2px;
    margin-right: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.lang-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.lang-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .nav-actions {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    
    .nav {
        padding: 0.8rem 1rem;
        min-height: 60px;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0;
        background: rgba(37, 99, 235, 0.08);
        border-radius: 8px;
        padding: 3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(37, 99, 235, 0.15);
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px;
        min-width: 50px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .lang-btn:hover {
        background: rgba(37, 99, 235, 0.15);
        transform: translateY(-1px);
    }
    
    .lang-btn.active {
        background: #2563eb;
        color: white;
        box-shadow: 0 3px 8px rgba(37, 99, 235, 0.4);
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .nav-actions {
        flex-direction: row;
        gap: 0.6rem;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    
    .nav {
        padding: 0.6rem 0.8rem;
        min-height: 56px;
    }
    
    .language-switcher {
        justify-content: center;
        background: rgba(37, 99, 235, 0.06);
        border-radius: 10px;
        padding: 4px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.12);
        min-width: 120px;
    }
    
    .lang-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        min-width: 55px;
        letter-spacing: 0.3px;
    }
    
    .lang-btn:hover {
        background: rgba(37, 99, 235, 0.12);
        transform: translateY(-2px);
    }
    
    .lang-btn.active {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        transform: translateY(-2px);
    }
    
    .lang-btn.active::after {
        bottom: -3px;
        width: 5px;
        height: 5px;
        background: #fbbf24;
    }
}/
* Company Video Styles */
.company-video {
    margin-top: 2rem;
    background: linear-gradient(135deg, #334155, #475569);
}

.company-video:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #475569, #64748b);
}

/* QR Codes Container Styles */
.qr-codes-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.qr-code-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.qr-code-item .qr-code {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-item .qr-code:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.qr-code-item .qr-code img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
}

.qr-code-item .qr-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for QR codes */
@media (max-width: 768px) {
    .qr-codes-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .qr-code-item {
        max-width: 100%;
    }
    
    .qr-code-item .qr-code img {
        width: 160px;
        height: 160px;
    }
    
    .qr-code-item .qr-text {
        font-size: 0.95rem;
    }
    
    /* Company video mobile adjustments */
    .company-video {
        margin-top: 1.5rem;
    }
    
    .event-visual {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .qr-codes-container {
        gap: 1.5rem;
    }
    
    .qr-code-item .qr-code {
        padding: 1rem;
    }
    
    .qr-code-item .qr-code img {
        width: 140px;
        height: 140px;
    }
    
    .qr-code-item .qr-text {
        font-size: 0.9rem;
    }
}

/* Enhanced event visual section */
.event-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Video placeholder enhancements */
.video-placeholder {
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.video-placeholder:hover::before {
    transform: translateX(100%);
}/* Fix spa
cing for benefit amounts */
.benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    gap: 1rem; /* Add gap between amount and description */
}

.benefit-item .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap; /* Prevent amount from wrapping */
    margin-right: 0.5rem; /* Add right margin for spacing */
}

.benefit-item .desc {
    flex: 1; /* Allow description to take remaining space */
    text-align: right; /* Align description to the right */
}

/* Mobile responsive adjustments for benefit items */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .benefit-item .amount {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .benefit-item .desc {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .benefit-item .amount {
        font-size: 1.3rem;
    }
}/* Video
 Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px 12px 0 0;
}

.video-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.video-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background-color: #f3f4f6;
    color: #ef4444;
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding: 2rem;
    background: #000;
    border-radius: 0 0 12px 12px;
}

.video-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for video modal */
@media (max-width: 768px) {
    .video-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .video-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .video-container {
        padding: 1rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        margin: 15% auto;
        width: 98%;
    }
    
    .video-modal-header {
        padding: 0.8rem 1rem;
    }
    
    .video-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .video-container {
        padding: 0.8rem;
    }
    
    .video-container iframe {
        height: 200px;
    }
}

/* Enhanced video placeholder hover effect */
.video-placeholder.company-video:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #475569, #64748b);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Close modal when clicking outside */
.video-modal.show {
    display: block;
}/
* Prize rank styling for unified benefit cards */
.prize-rank {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin-right: 0.5rem;
}

/* Different colors for different prize ranks */
.benefit-item .prize-rank:nth-of-type(1) {
    background: linear-gradient(135deg, #fbbf24, #f59e0b); /* Gold for 1st prize */
}

/* Target specific prize ranks by their text content */
.benefit-item:has([data-text-key="benefits.card3.prize1.rank"]) .prize-rank {
    background: linear-gradient(135deg, #fbbf24, #f59e0b); /* Gold for 1st prize */
}

.benefit-item:has([data-text-key="benefits.card3.prize2.rank"]) .prize-rank {
    background: linear-gradient(135deg, #94a3b8, #64748b); /* Silver for 2nd prize */
}

.benefit-item:has([data-text-key="benefits.card3.prize3.rank"]) .prize-rank {
    background: linear-gradient(135deg, #cd7c2f, #a16207); /* Bronze for 3rd prize */
}

/* Fallback for browsers that don't support :has() */
.benefit-item .prize-rank[data-text-key="benefits.card3.prize1.rank"] {
    background: linear-gradient(135deg, #fbbf24, #f59e0b); /* Gold */
}

.benefit-item .prize-rank[data-text-key="benefits.card3.prize2.rank"] {
    background: linear-gradient(135deg, #94a3b8, #64748b); /* Silver */
}

.benefit-item .prize-rank[data-text-key="benefits.card3.prize3.rank"] {
    background: linear-gradient(135deg, #cd7c2f, #a16207); /* Bronze */
}

/* Remove duplicate prize-item styles since we're now using benefit-item */
.prize-item {
    display: none; /* Hide any remaining prize-item elements */
}

/* Ensure consistent spacing for all benefit items */
.benefit-card .benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive adjustments for prize ranks */
@media (max-width: 768px) {
    .prize-rank {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: inline-block;
        text-align: center;
        min-width: 80px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        padding: 1.2rem;
    }
    
    .benefit-item .desc {
        text-align: center;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .prize-rank {
        font-size: 0.9rem;
        padding: 0.25rem 0.7rem;
        min-width: 70px;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 0.4rem;
    }
    
    .benefit-item .desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}/* 
/* Brand text styling */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #f59e0b !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Additional specificity to ensure orange color */
.nav-brand .brand-text {
    color: #f59e0b !important;
}

.header .nav-brand .brand-text {
    color: #f59e0b !important;
}

/* Override any inherited text color */
.brand-text, .brand-text * {
    color: #f59e0b !important;
}
}

/* Mobile responsive for brand text */
@media (max-width: 768px) {
    .brand-text {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
    
    /* Hide brand text if nav-brand becomes too narrow */
    .nav-brand {
        position: relative;
    }
    
    .nav-brand:has(.logo) {
        min-width: 150px;
    }
    
    @container (max-width: 150px) {
        .brand-text {
            display: none;
        }
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 0.5rem;
    }
}/* CRITI
CAL FIX: Ensure brand text is orange - highest priority */
.nav-brand .brand-text,
.header .nav-brand .brand-text,
.nav .nav-brand .brand-text,
span.brand-text,
.brand-text {
    color: #f59e0b !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Override any inherited styles */
.brand-text * {
    color: inherit !important;
}

/* Ensure no other styles can override this */
body .nav-brand .brand-text {
    color: #f59e0b !important;
}

html body .header .nav .nav-brand .brand-text {
    color: #f59e0b !important;
}/* M
obile optimization for hero CTA button */
@media (max-width: 768px) {
    .hero-cta .btn-large {
        padding: 14px 24px !important;
        font-size: 1.1rem !important;
        min-height: 48px !important;
        width: auto !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.6rem !important;
        white-space: nowrap !important;
        text-align: center !important;
    }
    
    .hero-cta .btn-large i {
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-cta .btn-large {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        min-height: 44px !important;
        width: auto !important;
        max-width: 260px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px !important;
        white-space: nowrap !important;
    }
    
    .hero-cta .btn-large i {
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure the button container is centered */
    .hero-cta {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
}/
* Additional fix for very small screens */
@media (max-width: 360px) {
    .hero-cta .btn-large {
        padding: 10px 16px !important;
        font-size: 0.95rem !important;
        max-width: 240px !important;
        min-height: 42px !important;
    }
    
    .hero-cta .btn-large i {
        font-size: 0.95rem !important;
    }
}/*
 Mobile navigation optimization - prevent text overlap */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .nav {
        padding: 0.6rem 1rem;
        min-height: 56px;
        max-height: 56px;
    }
    
    .nav-actions {
        flex-direction: row;
        gap: 0.6rem;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0;
        background: rgba(37, 99, 235, 0.08);
        border-radius: 6px;
        padding: 2px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.12);
        flex-shrink: 0;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 4px;
        min-width: 42px;
        text-align: center;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-actions .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 36px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Ensure hero section doesn't overlap with fixed header */
    .hero {
        padding-top: 56px;
        min-height: calc(100vh - 56px);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.5rem 0.8rem;
        min-height: 52px;
        max-height: 52px;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .language-switcher {
        background: rgba(37, 99, 235, 0.06);
        border-radius: 6px;
        padding: 2px;
        min-width: 100px;
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
        min-width: 38px;
    }
    
    .nav-actions .btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-height: 32px;
    }
    
    /* Adjust hero section for smaller header */
    .hero {
        padding-top: 52px;
        min-height: calc(100vh - 52px);
    }
    
    /* Hide brand text on very small screens to prevent layout issues */
    .brand-text {
        display: none;
    }
}

/* Ensure nav-brand doesn't take too much space on mobile */
@media (max-width: 768px) {
    .nav-brand {
        flex-shrink: 0;
        max-width: 60%;
    }
    
    .logo {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        max-width: 50%;
    }
    
    .logo {
        height: 28px;
    }
}/*
 Registration section title white color */
.registration .section-title {
    color: white !important;
}

.registration .registration-header .section-title {
    color: white !important;
}/
* Mobile footer copyright text optimization */
@media (max-width: 768px) {
    .footer-bottom p {
        line-height: 1.6;
        font-size: 0.9rem;
    }
    
    .footer-bottom p::after {
        content: "\A";
        white-space: pre;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom p {
        line-height: 1.8;
        font-size: 0.85rem;
        word-break: break-word;
        hyphens: auto;
    }
}/* 
Mobile footer copyright message optimization */
@media (max-width: 768px) {
    .footer-bottom p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        line-height: 1.6;
        font-size: 0.9rem;
    }
    
    .copyright-year {
        display: block;
        text-align: center;
    }
    
    .copyright-message {
        display: block;
        text-align: center;
        font-weight: 500;
        color: #cbd5e1;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom p {
        gap: 0.8rem;
        line-height: 1.8;
        font-size: 0.85rem;
    }
    
    .copyright-year {
        font-size: 0.85rem;
    }
    
    .copyright-message {
        font-size: 0.9rem;
        font-weight: 600;
        color: #e2e8f0;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}