/* ===== CSS VARIABLES ===== */
:root {
    --primary: #00b4d8;
    --primary-dark: #0096b3;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #ffd23f;
    --accent-dark: #f4c430;
    
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --gray: #4a4a4a;
    --gray-light: #6a6a6a;
    --white: #ffffff;
    --white-off: #f8f9fa;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.3);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* iOS Safari viewport height fix */
    height: -webkit-fill-available;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
    /* iOS Safari viewport height fix */
    min-height: 100vh;
    min-height: -webkit-fill-available;
    /* iOS Safari touch improvements */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    z-index: 2;
}

.loading-logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 180, 216, 0.3);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

/* Better anchor targeting for fixed navbar */
section[id] {
    scroll-margin-top: 90px;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 180, 216, 0.3));
}

.brand-text {
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-social {
    display: flex;
    gap: 1.5rem;
}

.nav-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 210, 63, 0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 180, 216, 0.3));
}

.mission-statement {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    text-align: center;
}

.mission-statement h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.mission-statement h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.mission-statement p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsorship-criteria {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 210, 63, 0.3);
    text-align: center;
}

.sponsorship-criteria h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sponsorship-criteria h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.sponsorship-criteria ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.sponsorship-criteria li {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

    .sponsorship-criteria li:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateX(5px);
    }
    
    /* Mobile responsive for sponsorship criteria */
    .sponsorship-criteria {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .sponsorship-criteria h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .sponsorship-criteria h4 {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .sponsorship-criteria ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .sponsorship-criteria li {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Mobile responsive for mission statement */
    .mission-statement {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .mission-statement h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .mission-statement h4 {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .mission-statement p {
        font-size: 1rem;
        line-height: 1.5;
    }


.criteria-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.criteria-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.criteria-content {
    max-width: 600px;
    margin: 0 auto;
}

    .criteria-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    @media (max-width: 768px) and (orientation: portrait) {
        .criteria-list {
            grid-template-columns: 1fr;
            gap: 0.8rem;
        }
        
        .criteria-list li {
            padding: 1.25rem;
            font-size: 0.9rem;
            line-height: 1.4;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
        }
        
        .criteria-list li:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }
    }

.criteria-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.criteria-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--white-off);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.card-content {
    text-align: center;
    color: var(--white);
}

.card-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.card-content span {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--white-off);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 8rem 0;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 210, 63, 0.03) 0%, transparent 50%);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.image-showcase {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.poster-link {
    display: block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.poster-link:hover {
    transform: translateY(-5px);
}

.master-portrait {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: contrast(1.1) brightness(1.05);
}

.click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius-xl);
}

.poster-link:hover .click-overlay {
    opacity: 1;
}

.click-content {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.click-content i {
    color: var(--primary);
    font-size: 1.2rem;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
}

.overlay-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}

.badge-text {
    color: var(--white);
}



.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-intro {
    text-align: left;
}

.event-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.event-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.event-description {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary);
}

.event-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white-off);
    margin: 0;
}

.event-highlights {
    margin-top: 2rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--white-off);
    line-height: 1.5;
}

.program-philosophy {
    margin-top: 6rem;
    padding: 4rem 0;
    background: var(--dark-lighter);
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
}

.program-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 180, 216, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.philosophy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.philosophy-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.philosophy-header p {
    font-size: 1.2rem;
    color: var(--white-off);
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.pillar {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.pillar:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-glow);
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pillar h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pillar p {
    color: var(--white-off);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pillar-features {
    list-style: none;
    text-align: left;
}

.pillar-features li {
    padding: 0.5rem 0;
    color: var(--white-off);
    position: relative;
    padding-left: 1.5rem;
}

.pillar-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.training-approach {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-content > p {
    font-size: 1.2rem;
    color: var(--white-off);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.training-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.method {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.method-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.method h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.method p {
    color: var(--white-off);
    line-height: 1.5;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-item {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-item strong {
    color: var(--accent);
    font-weight: 600;
}

.approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--primary);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--white-off);
    font-weight: 500;
}

/* ===== ABOUT CTA SECTION ===== */
.about-cta {
    margin-top: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--dark-lighter) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--white-off);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-cta .btn {
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===== EVENTS SECTION ===== */
.clickable-event-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.3);
}

.clickable-event-card .event-poster {
    position: relative;
}

.clickable-event-card .event-poster::after {
    content: 'Click to Register';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.clickable-event-card:hover .event-poster::after {
    opacity: 1;
}

.clickable-event-card .event-overlay {
    transition: all 0.3s ease;
}

.clickable-event-card:hover .event-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}
.schedule-section {
    padding: 8rem 0;
    background: var(--dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.event-poster {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .poster-image {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-date-badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    align-self: flex-start;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-date-badge .month,
.event-date-badge .year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--accent);
    width: 16px;
}

.event-actions {
    padding: 1.5rem;
    text-align: center;
}

.select-event {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.select-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

/* Mobile touch improvements */
.select-event:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.3);
}

.event-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.event-card:active {
    transform: scale(0.98);
}

.meta-item i {
    color: var(--primary);
    width: 20px;
    font-size: 1.1rem;
}

.session-breakdown {
    margin-bottom: 4rem;
}

.session-breakdown h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.session-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent) 0%, #00a8cc 100%);
    border-radius: 15px 0 0 15px;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
}

.timeline-time {
    background: var(--accent);
    color: var(--black);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 140px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.session-block {
    background: var(--dark-lighter);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.session-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.session-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.session-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.session-time {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.session-header h4 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

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

.session-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.session-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.session-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.session-item h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.session-item p {
    color: var(--white-off);
    font-size: 0.9rem;
    line-height: 1.5;
}

.session-break {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.break-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    color: var(--white-off);
    font-weight: 600;
}

.break-content i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.sponsorship-opportunity {
    background: linear-gradient(135deg, var(--dark-lighter) 0%, rgba(255, 210, 63, 0.1) 100%);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 2px solid var(--accent);
    text-align: center;
}

.sponsorship-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sponsorship-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.sponsorship-icon i {
    font-size: 2rem;
    color: var(--white);
}

.sponsorship-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.sponsorship-text p {
    font-size: 1.1rem;
    color: var(--white-off);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.sponsorship-highlight {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== EVENT SELECTION CARDS ===== */
.event-selection-cards {
    margin-bottom: 3rem;
}

.selection-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.event-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #00a8cc 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.event-date-badge {
    background: var(--accent);
    color: var(--black);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    min-width: 60px;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-date-badge .month,
.event-date-badge .year {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.event-location-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.event-card-content {
    margin-bottom: 1.5rem;
}

.event-card-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-card-time {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.event-card-location {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.event-select-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #00a8cc 100%);
    color: var(--black);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

/* Selected Event Summary */
.selected-event-summary {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.summary-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.summary-content i {
    color: var(--accent);
    font-size: 1.2rem;
}

.summary-text {
    font-size: 1rem;
    font-weight: 500;
}

.change-event-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.change-event-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

/* Registration Forms Container */
.registration-forms-container {
    display: none;
}

.registration-forms-container.active {
    display: block;
}

.forms-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    padding: 0;
}

.registration-form {
    min-width: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ===== REGISTRATION SECTION ===== */
.registration-section {
    padding: 8rem 0;
    background: var(--dark-light);
    position: relative;
}

/* ===== MOBILE TOP EVENTS (POSTERS) - also used on desktop for uniformity ===== */
.mobile-top-events {
    display: block;
    padding: 3rem 0 1.5rem;
}

.mobile-events-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.mobile-poster-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mobile-poster-media {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    /* iOS Safari fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Let the poster determine the height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-poster-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.0) 60%, rgba(0,0,0,.25) 100%);
    pointer-events: none;
}

.mobile-poster-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: topAccent 6s linear infinite;
}

@keyframes topAccent {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.mobile-poster-media img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
    /* iOS Safari fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Let the image determine its own size */
    object-fit: contain;
}

.mobile-poster-info {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-poster-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
}

.mobile-poster-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-weight: 500;
}

.mobile-poster-meta span:first-child {
    color: #ffd23f;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.3);
}

.mobile-poster-meta span:first-child::before {
    content: '📅';
    font-size: 1rem;
    margin-right: 0.25rem;
}

.mobile-poster-meta span:nth-child(2) {
    color: #00b4d8;
    font-weight: 600;
}

.mobile-poster-meta span:nth-child(2)::before {
    content: '⏰';
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.mobile-poster-venue {
    color: #ffd23f;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 210, 63, 0.4);
}

.mobile-poster-venue::before {
    content: '🏢';
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.mobile-poster-meta span:last-child {
    color: #ff6b35;
    font-weight: 600;
}

.mobile-poster-meta span:last-child::before {
    content: '📍';
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.mobile-poster-cta {
    margin-top: 0.75rem;
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4757 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-poster-cta::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;
}

.mobile-poster-cta:hover::before {
    left: 100%;
}

.mobile-poster-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff4757 0%, #ff6b35 50%, #f7931e 100%);
}

.mobile-poster-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.4);
}


.mobile-poster-cta i {
    font-size: 0.9rem;
}

/* Desktop refinements for better fit */
@media (min-width: 1025px) {
    .mobile-top-events {
        padding-top: 5rem; /* more breathing room under navbar */
    }

    .mobile-events-list {
        grid-template-columns: repeat(3, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .mobile-poster-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,0.08) inset;
        border-color: rgba(255,255,255,0.18);
        text-decoration: none;
    }
    
    .mobile-poster-card:hover .mobile-poster-cta {
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    }

    .mobile-poster-card:hover .mobile-poster-media img {
        transform: scale(1.03);
    }
}

@media (min-width: 1440px) {
    .mobile-events-list {
        grid-template-columns: repeat(3, minmax(360px, 1fr));
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .mobile-top-events {
        padding: 1rem 0 0.5rem;
    }

    .mobile-events-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Reduce animation intensity on mobile */
    .mobile-poster-media::after { animation-duration: 10s; opacity: .8; }
    .mobile-poster-card:active { transform: translateY(2px); }

    /* Hide hero on mobile portrait to reduce confusion */
    .hero {
        display: none;
    }

    /* Hide redundant event selection grid on mobile portrait */
    .event-selection-cards {
        display: none !important;
    }

    /* Hide Training Sessions grid if it's duplicating the same info */
    .events-grid {
        display: none;
    }


    /* Tighten mobile spacing */
    .container {
        padding: 0 1rem;
        /* iOS Safari safe area support */
        padding-left: max(1rem, env(safe-area-inset-left) + 1rem);
        padding-right: max(1rem, env(safe-area-inset-right) + 1rem);
    }
}

/* Simplify desktop start: hide redundant components globally */
.hero {
    display: none !important;
}

.event-selection-cards,
.events-grid {
    display: none;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--dark-lighter);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-card ul {
    list-style: none;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--white-off);
}

.info-card i {
    color: var(--accent);
}

.registration-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white-off);
}

.detail-item i {
    color: var(--primary);
    width: 20px;
}

.sponsorship-info {
    text-align: center;
}

.sponsorship-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
}

.sponsorship-badge i {
    font-size: 1.1rem;
}

.payment-info {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-amount {
    margin-bottom: 1rem;
}

.payment-amount .amount {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.payment-amount .label {
    display: block;
    font-size: 1rem;
    color: var(--white-off);
    font-weight: 500;
}

.payment-note {
    color: var(--white-off);
    font-size: 0.9rem;
    line-height: 1.5;
}

.registration-form {
    background: var(--dark-lighter);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-selection {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-selection h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

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

.event-option {
    position: relative;
}

.event-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.event-option label {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.event-option input[type="radio"]:checked + label {
    border-color: var(--accent);
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
}

.event-option label:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.event-date {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-time {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-location {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 180, 216, 0.3);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.terms-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.terms-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.terms-toggle h3 {
    margin: 0;
    border: none;
    padding: 0;
}

.terms-content {
    display: none;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    color: var(--white-off);
    line-height: 1.6;
}

.terms-content.active {
    display: block;
}

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

.checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox label {
    margin: 0;
    cursor: pointer;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-lighter);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

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

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--white-off);
    line-height: 1.6;
}

.contact-form {
    background: var(--dark-lighter);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 1.3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: var(--white-off);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white-off);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-off);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-hero,
    .registration-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
    
    .training-approach {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .training-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-method {
        padding: 1.5rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        gap: 1rem;
    }
    
    .training-method h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: var(--accent);
        font-weight: 600;
    }
    
    .training-method p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: var(--text-light);
    }
    
    /* Stats mobile optimization - Portrait First */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--accent);
        font-weight: 700;
        text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
        color: var(--text-light);
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Section Mobile Optimization */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
    
    /* Mobile scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Let posters be their natural size on mobile */
    .mobile-poster-media img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile touch improvements */
    .btn,
    .event-option label,
    .nav-menu a,
    input,
    select,
    textarea,
    button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        /* iOS Safari form fixes */
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    /* iOS Safari input zoom prevention */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
    }
    
    /* Mobile performance optimizations */
    .hero,
    .section {
        will-change: transform;
    }
    
    /* Mobile spacing utilities */
    .mobile-padding {
        padding: 0 1rem;
    }
    
    .mobile-margin {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .container {
        padding: 0 1rem;
    }
    
    /* Portrait-first mobile layout */
    .hero {
        min-height: 85vh;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0, 180, 216, 0.2);
        /* iOS Safari safe area support */
        padding-top: max(0.5rem, env(safe-area-inset-top) + 0.5rem);
        padding-left: max(1rem, env(safe-area-inset-left) + 1rem);
        padding-right: max(1rem, env(safe-area-inset-right) + 1rem);
    }
    
    /* Mobile Brand Styling */
    .brand-logo {
        height: 32px;
        filter: drop-shadow(0 2px 6px rgba(0, 180, 216, 0.4));
    }
    
    .brand-text {
        font-size: 1rem;
        letter-spacing: 1px;
        text-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
    }
    
    .brand-link {
        gap: 10px;
    }
    
    /* Hide social links on mobile */
    .nav-social {
        display: none;
    }
    
    /* Mobile Menu - Portrait First */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 20, 40, 0.98) 100%); /* Vertical gradient */
        flex-direction: column;
        justify-content: flex-start; /* Start from top for vertical flow */
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1rem;
        z-index: 1200;
        padding: 2rem 1rem 1rem 1rem; /* More padding at top */
        backdrop-filter: blur(20px);
        overflow-y: auto; /* Scrollable if needed */
        padding-top: 4rem; /* Space for close button */
        /* iOS Safari safe area support */
        padding-top: max(4rem, env(safe-area-inset-top) + 4rem);
        padding-left: max(1rem, env(safe-area-inset-left) + 1rem);
        padding-right: max(1rem, env(safe-area-inset-right) + 1rem);
        padding-bottom: max(1rem, env(safe-area-inset-bottom) + 1rem);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        max-width: 280px;
    }

    .nav-menu a {
        display: block;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(0, 180, 216, 0.15);
        border-color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
        color: var(--white);
    }
    
    /* Mobile menu improvements */
    .nav-menu a:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
    }
    
    /* Mobile menu close button */
    .nav-menu::before {
        content: '×';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        color: var(--accent);
        cursor: pointer;
        z-index: 1300;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        border: 1px solid rgba(0, 180, 216, 0.3);
    }
    
    /* Mobile Toggle Button */
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1300;
        width: 32px;
        height: 32px;
        padding: 0;
        background: rgba(0, 180, 216, 0.1);
        border: 1px solid rgba(0, 180, 216, 0.3);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-toggle:hover {
        background: rgba(0, 180, 216, 0.2);
        border-color: var(--accent);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--accent);
        transition: all 0.3s ease;
        position: relative;
        border-radius: 1px;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--accent);
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    .nav-toggle span::before {
        top: -6px;
    }

    .nav-toggle span::after {
        bottom: -6px;
    }

    /* Hamburger animation when menu is open */
    .nav-toggle.active {
        background: rgba(0, 180, 216, 0.2);
        border-color: var(--accent);
    }
    
    .nav-toggle.active span {
        background: transparent;
    }

    .nav-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 10px;
        font-weight: 600;
    }
    
    /* Button variations mobile */
    .btn-primary {
        background: linear-gradient(135deg, var(--accent) 0%, #00a8cc 100%);
        box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    }

    /* Payment details block - portrait */
    .payment-details {
        margin-top: 0.75rem;
        display: none;
    }
    .payment-option {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        margin-bottom: 0.6rem;
    }
    .payment-option i {
        color: var(--accent);
        font-size: 1.1rem;
    }
    .payment-text {
        color: var(--white);
        font-size: 0.95rem;
    }
    .payment-link {
        margin-left: auto;
        color: var(--accent);
        text-decoration: underline;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .payment-note {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-top: 0.25rem;
        line-height: 1.4;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Hide floating elements on mobile for better UX */
    .floating-elements {
        display: none;
    }
    
    /* Ensure proper spacing without floating elements */
    .hero-content {
        padding: 0 1rem;
    }
    

    
    /* About Section Mobile Optimization */
    .event-name {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .event-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .event-description {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .event-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Event Highlights Mobile */
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
        gap: 0.8rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Program Philosophy Mobile */
    .pillar {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pillar-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .pillar-icon i {
        font-size: 1.3rem;
    }
    
    .pillar h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .pillar p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .pillar-features {
        gap: 0.5rem;
    }
    
    .pillar-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Training Methods Mobile */
    .method {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .method-number {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .method h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .method p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Form layout mobile optimization */
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section:last-child {
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group:last-child {
        margin-bottom: 0;
    }
    
    /* Input focus states mobile */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Events Section Mobile Optimization - Portrait First */
    .events-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
        grid-template-columns: 1fr; /* Single column for vertical flow */
    }
    
    .event-card {
        margin-bottom: 1.25rem;
        border-radius: 12px;
        display: flex;
        flex-direction: column; /* Vertical layout */
    }
    
    /* Poster sizing fix for mobile - Portrait optimized */
    .event-poster {
        height: 250px; /* Good vertical proportion */
        flex-shrink: 0; /* Don't shrink poster */
    }
    
    /* Event content flows vertically */
    .event-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .poster-image {
        object-fit: cover;
        object-position: center;
    }
    
    .event-overlay {
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 100%
        );
        padding: 1.25rem;
    }
    
    /* Event info mobile improvements */
    .event-info {
        background: rgba(0, 0, 0, 0.75);
        padding: 1rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        gap: 1rem;
    }
    
    .event-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .event-info p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .event-meta {
        gap: 0.25rem;
    }
    
    .meta-item {
        font-size: 0.75rem;
        line-height: 1.2;
        gap: 0.4rem;
    }
    
    .meta-item i {
        width: 14px;
        font-size: 0.7rem;
    }
    
    .meta-item span {
        line-height: 1.1;
    }
    
    /* Date badge mobile optimization */
    .event-date-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        align-self: flex-start;
    }
    
    .event-date-badge .day {
        font-size: 1rem;
        line-height: 1;
    }
    
    .event-date-badge .month,
    .event-date-badge .year {
        font-size: 0.65rem;
        opacity: 0.9;
    }
    
    /* Event actions mobile */
    .event-actions {
        padding: 1.25rem;
    }
    
    .select-event {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .event-info {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
        .session-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .session-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .session-header h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .session-item {
        padding: 1.25rem;
        gap: 0.8rem;
    }
    
    .session-item h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .session-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .sponsorship-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .sponsorship-highlight {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* General mobile spacing improvements */
    .about-section,
    .schedule-section,
    .registration-section,
    .contact-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.4;
    }

    /* Poster CTA hover text always visible on mobile to hint tap */
    .poster-link .click-overlay {
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.55) 100%
        );
        align-items: flex-end;
        padding: 1rem;
    }
    .click-content {
        width: 100%;
        justify-content: center;
        background: rgba(0, 0, 0, 0.55);
    }

    /* Larger tap targets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem;
        font-size: 1rem;
    }
    .checkbox input[type="checkbox"] {
        transform: scale(1.2);
    }

    /* Mobile CTA fixed bar */
    body.has-mobile-cta {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-primary);
        color: white;
        font-weight: 800;
        text-decoration: none;
        z-index: 1100;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
        letter-spacing: 0.4px;
        padding-bottom: env(safe-area-inset-bottom);
        /* iOS Safari safe area support */
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0.75rem;
    }

    .brand-logo {
        height: 28px;
    }
    
    .brand-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .brand-link {
        gap: 8px;
    }

    .nav-menu {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .nav-menu li {
        max-width: 260px;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.9rem 1.3rem;
    }
    
    .nav-toggle {
        width: 28px;
        height: 28px;
    }
    
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
        width: 16px;
    }

    /* Hero Section Mobile Optimization */
    .hero {
        min-height: 85vh;
        padding-top: 5rem;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .hero-logo-img {
        width: 80px;
        filter: drop-shadow(0 4px 16px rgba(0, 180, 216, 0.3));
        transition: all 0.3s ease;
    }
    
    .hero-logo-img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 20px rgba(0, 180, 216, 0.5));
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--white);
        text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        color: var(--text-light);
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        gap: 1rem;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    }
    
    /* Mission Statement Mobile - Portrait First */
    .mission-header h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--accent);
        text-align: center;
    }
    
    .mission-content p {
        font-size: 0.95rem;
        padding: 1.25rem;
        margin: 0 0.5rem;
        line-height: 1.6;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .criteria-header h3 {
        font-size: 1.4rem;
    }

    .criteria-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .criteria-list li {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Registration Section Mobile Optimization */
    .registration-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Event selection mobile */
    .event-selection {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .event-selection h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .event-options {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .event-option label {
        padding: 1rem;
        text-align: left;
        border-radius: 10px;
    }
    
    .event-date {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .event-time {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .event-location {
        font-size: 0.75rem;
        line-height: 1.2;
        padding: 0.4rem;
        background: rgba(0, 180, 216, 0.1);
        border-radius: 5px;
        border-left: 2px solid var(--accent);
    }
    
    .event-option input[type="radio"]:checked + label {
        transform: translateY(-1px);
        box-shadow: 0 3px 12px rgba(0, 180, 216, 0.25);
    }
    
    /* Form mobile optimization - Portrait First */
    .registration-form {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.4rem;
        border-bottom: 2px solid rgba(0, 180, 216, 0.3);
    }
    
    .form-group {
        margin-bottom: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
        color: var(--accent);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
        min-height: 44px; /* Touch-friendly height */
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.15);
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Camp shirt block */
    #campShirtSizeRow .form-group select {
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Event selection cards mobile */
    .event-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-card {
        padding: 1.5rem;
    }
    
    .event-card-header {
        margin-bottom: 1rem;
    }
    
    .event-date-badge {
        padding: 0.6rem 0.8rem;
        min-width: 50px;
    }
    
    .event-date-badge .day {
        font-size: 1.3rem;
    }
    
    .event-date-badge .month,
    .event-date-badge .year {
        font-size: 0.6rem;
    }
    
    .event-location-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .event-card-title {
        font-size: 1.1rem;
    }
    
    .event-card-time {
        font-size: 0.9rem;
    }
    
    .event-card-location {
        font-size: 0.8rem;
    }
    
    .event-select-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Selected event summary mobile */
    .selected-event-summary {
        padding: 0.8rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .summary-content {
        gap: 0.5rem;
    }
    
    .summary-text {
        font-size: 0.9rem;
    }
    
    .change-event-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Forms scroll container mobile */
    .forms-scroll-container {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Timeline mobile */
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        text-align: center;
    }
    
    .timeline-time {
        min-width: auto;
        width: 100%;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Show payment details instantly on mobile */
    .payment-details {
        display: block !important;
    }
    
    .payment-option {
        display: flex !important;
    }
    
    .payment-note {
        display: block !important;
    }
    
    /* Submit button mobile - Portrait optimized */
    .btn[type="submit"] {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
        min-height: 48px; /* Touch-friendly */
        align-self: stretch; /* Full width */
        margin-top: 1rem;
    }
    
    .location-list {
        gap: 0.5rem;
    }
    
    .location-item {
        font-size: 0.9rem;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 3px solid var(--accent);
        margin-bottom: 0.5rem;
    }
    
    .location-item strong {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.95rem;
    }
    
    /* Mobile method improvements */
    .method {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .method h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .method p,
    .location-list {
        font-size: 0.9rem;
    }

    /* Improve hero spacing on small screens */
    .hero {
        min-height: 85vh;
        padding-top: 6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section,
    .schedule-section,
    .registration-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .registration-form,
    .contact-form {
        padding: 1.25rem;
    }

    .about-cta {
        padding: 2.5rem 1.25rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== PORTRAIT MOBILE OPTIMIZATIONS (Vertical-First) ===== */
@media (max-width: 480px) and (orientation: portrait) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Hero - Vertical-first layout */
    .hero {
        min-height: 90vh;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    /* Section headers - Vertical spacing */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Events - Vertical poster optimization */
    .event-poster {
        height: 220px; /* Better vertical proportion */
    }
    
    .event-info {
        padding: 0.75rem;
    }
    
    .event-info h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .event-info p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    /* Buttons - Vertical touch optimization */
    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px; /* Touch-friendly height */
    }
    
    /* Forms - Vertical layout */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    /* Cards - Vertical spacing */
    .pillar {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .method {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Stats - Single column for vertical */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    /* Navigation - Vertical menu */
    .nav-menu {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .nav-menu a {
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Content - Vertical flow */
    .mission-content p {
        padding: 1rem;
        margin: 0 0.25rem;
        line-height: 1.5;
    }
    
    .criteria-list li {
        padding: 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Vertical spacing utilities */
    .vertical-spacing {
        margin-bottom: 1rem;
    }
    
    .vertical-padding {
        padding: 1rem 0;
    }
}

/* ===== LANDSCAPE MOBILE HANDLING ===== */
@media (max-width: 768px) and (orientation: landscape) {
    /* Force portrait-like behavior even in landscape */
    .hero {
        min-height: 100vh;
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Compact sections for landscape */
    .section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Events in landscape */
    .event-poster {
        height: 200px;
    }
    
    .event-info {
        padding: 0.75rem;
    }
    
    /* Forms in landscape */
    .registration-form,
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-section {
        margin-bottom: 1rem;
    }
    
    /* Navigation in landscape */
    .nav-menu {
        padding: 1rem;
        gap: 0.5rem;
        /* iOS Safari safe area support */
        padding-left: max(1rem, env(safe-area-inset-left) + 1rem);
        padding-right: max(1rem, env(safe-area-inset-right) + 1rem);
    }
    
    .nav-menu a {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== REGISTER OVERLAY BUTTON ===== */
.register-overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 180, 216, 0.9);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.event-card:hover .register-overlay-btn {
    opacity: 1;
}

.register-overlay-btn:hover {
    background: rgba(0, 180, 216, 1);
    transform: scale(1.02);
}

.register-overlay-btn i {
    font-size: 1.5rem;
}

/* Mobile overlay button */
@media (max-width: 768px) {
    .register-overlay-btn {
        opacity: 1;
        background: rgba(0, 180, 216, 0.8);
        font-size: 1rem;
    }
    
    .register-overlay-btn:hover {
        background: rgba(0, 180, 216, 0.9);
    }
}

/* ===== FLOATING REGISTER BUTTON ===== */
.floating-register-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    /* iOS Safari safe area support */
    bottom: max(20px, env(safe-area-inset-bottom) + 20px);
    right: max(20px, env(safe-area-inset-right) + 20px);
}

.register-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.register-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff5722, #ff9800);
    animation: none;
}

.register-link i {
    font-size: 1.2rem;
}

/* Pulsing animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .floating-register-btn {
        bottom: max(15px, env(safe-area-inset-bottom) + 15px);
        right: max(15px, env(safe-area-inset-right) + 15px);
    }
    
    .register-link {
        padding: 18px 22px;
        font-size: 1rem;
        min-width: 130px;
        gap: 8px;
        font-weight: 800;
    }
    
    .register-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-register-btn {
        bottom: max(12px, env(safe-area-inset-bottom) + 12px);
        right: max(12px, env(safe-area-inset-right) + 12px);
    }
    
    .register-link {
        padding: 16px 20px;
        font-size: 0.95rem;
        min-width: 120px;
        gap: 6px;
        font-weight: 800;
    }
    
    .btn-text {
        display: block;
    }
    
    .register-link i {
        font-size: 1.4rem;
    }
} 
