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


html {
    scroll-behavior: smooth;
}



* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}


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

/* Navigation */
.navbar {
    background: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* Floating Language Switcher */
.floating-language-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: rgba(235, 0, 40, 0.8);
    border-color: rgba(235, 0, 40, 1);
    color: white;
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.uk-flag {
    background-image: url('en-flag.svg');
}

.tr-flag {
    background-image: url('tr-flag.svg');
}

/* Language-specific layouts */
.turkish-layout .nav-menu {
    gap: 1.5rem;
}

.turkish-layout .nav-right .nav-item:first-child {
    margin-right: 40px;
}

.turkish-layout .nav-right .nav-item:nth-child(2) {
    margin-right: 40px;
}

.english-layout .nav-menu {
    gap: 2rem;
}

.english-layout .nav-right {
    margin-right: -80px;
}

/* Hero section always keeps original styling */
.hero-buttons {
    gap: 1.5rem !important;
}

.btn {
    padding: 16px 32px !important;
    font-size: 1rem !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Fix mobile overflow issues */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }
    
    /* Navigation fixes */
    .nav-container {
        padding: 0 15px;
        height: 80px;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1.5rem;
        overflow: hidden;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-left,
    .nav-right {
        margin: 0;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    /* Language switcher */
    .floating-language-switcher {
        bottom: 20px;
        right: 20px;
        padding: 10px;
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px;
        width: 35px;
        height: 35px;
    }
    
    .flag-icon {
        width: 20px;
        height: 15px;
    }
    
    /* Hero section mobile fixes */
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 280px;
    }
    
    /* Counter section mobile */
    .counter-section {
        padding: 60px 0;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .counter-item {
        padding: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    /* About section mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Speakers section mobile */
    .speakers-section {
        padding: 60px 0;
    }
    
    .speakers-scroll-container {
        padding: 0 20px;
    }
    
    /* Partners section mobile */
    .partners-section {
        padding: 60px 0;
    }
    
    /* Team section mobile */
    .team-section {
        padding: 60px 0;
    }
    
    .team-scroll-container {
        padding: 0 20px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    min-width: fit-content;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.nav-left {
    margin-right: auto;
    margin-left: -80px;
}

.nav-right {
    margin-left: auto;
    margin-right: -80px;
}

.nav-item:nth-child(1) {
    margin-right: 35px;
}

.nav-item:nth-child(2) {
    margin-right: 35px;
}

.nav-item:nth-child(3) {
    margin-right: 0px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff4444;
}

.nav-button {
    color: #EB0028 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: #ff4444;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    width: 300px !important;
    height: 45px !important;
    min-width: 300px !important;
    min-height: 45px !important;
    max-width: none !important;
    max-height: none !important;
    flex-shrink: 0;
    transition: all 0.3s ease;
    object-fit: contain !important;
    display: block;
    transform: scale(1) !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Logo color switching based on background */
.logo-img.dark-bg {
    filter: brightness(0) invert(1); /* White logo for dark backgrounds */
}

.logo-img.light-bg {
    filter: brightness(0) invert(0); /* Black logo for light backgrounds */
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 0;
    overflow: hidden;
    isolation: isolate;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 25.33%, rgba(0, 0, 0, 0.48) 60.92%, #000 100%);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: -5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-align: left;
}

.react-text {
    color: #EB0028 !important;
    font-family: Inter;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -2.1px;
    display: block;
    text-transform: uppercase;
}

.before-text {
    color: #FFF !important;
    font-family: Inter;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.5px;
    display: block;
    margin-top: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-transform: lowercase;
}

.hero-description {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.72px;
    margin-bottom: 4rem;
    margin-top: -1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: -2rem;
    justify-content: flex-start;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: lowercase;
    font-family: inherit;
    min-width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary {
    background: #EB0028;
    color: #FFF;
    font-weight: 700;
    border: none;
    padding: 16px 32px;
    border-radius: 230px;
    width: 190px;
    height: 52px;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: #d60025;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235, 0, 40, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #EB0028;
    font-weight: 700;
    border: none;
    padding: 16px 32px;
    border-radius: 230px;
    width: 190px;
    height: 52px;
    flex-shrink: 0;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #EB0028;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow svg {
    width: 16px;
    height: 62px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
/* Counter Section */
.counter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.countdown-header {
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    font-family: Inter;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
    font-weight: 500;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(235, 0, 40, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    color: #EB0028;
    font-family: Inter;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.counter-label {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section {
    padding: 80px 0 40px;
    background: #000000;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #EB0028;
    font-family: Inter;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: Inter;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 0.5rem;
    font-family: Inter;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    font-family: Inter;
}

/* Team Section */
.team-section {
    padding: 40px 0 40px 0;
    background: #000000;
    color: #ffffff;
}

.team-header {
    text-align: center;
    margin-bottom: 1rem;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #EB0028;
    font-family: Inter;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
    max-width: 600px;
    margin: 0 auto;
}

.team-container {
    width: 100%;
    position: relative;
}

.team-scroll-container {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
    padding: 0 140px; /* Half card width for partial visibility */
}

.team-scroll-container:active {
    cursor: grabbing;
}

.team-scroll-wrapper {
    display: flex;
    gap: 32px;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: left center;
    will-change: transform;
}

.team-scroll-wrapper.smooth-scroll {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-scroll-wrapper.momentum-scroll {
    transition: none;
}

.team-member {
    flex: 0 0 280px;
    min-height: 390px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 0, 40, 0.3);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EB0028, #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 0, 40, 0.3);
}

.member-initials {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: Inter;
}

.member-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: Inter;
}

.member-role {
    font-size: 1rem;
    color: #EB0028;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: Inter;
}

.member-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    font-family: Inter;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: auto;
}

.social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    color: #EB0028;
    transform: translateY(-2px);
}

/* Team Scroll Indicator */
.team-scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.scroll-text {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.scroll-arrows {
    display: flex;
    gap: 8px;
}

.scroll-arrow-left,
.scroll-arrow-right {
    color: #EB0028;
    animation: bounceHorizontal 2s ease-in-out infinite;
}

.scroll-arrow-right {
    animation-delay: 0.5s;
}

@keyframes bounceHorizontal {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-3px);
    }
    60% {
        transform: translateX(3px);
    }
}

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

/* Responsive Design for Team */
@media (max-width: 768px) {
    .team-container {
        padding: 0 10px;
    }
    
    .team-scroll-container {
        padding: 0 125px; /* Half card width for mobile */
        overflow: hidden;
        width: 100%;
    }
    
    .team-scroll-wrapper {
        width: 100%;
    }
    
    .team-member {
        flex: 0 0 250px;
        min-height: 350px;
        max-width: 250px;
    }
    
    .member-image {
        height: 150px;
    }
    
    .member-initials {
        font-size: 2.5rem;
    }
    
    .team-scroll-indicator {
        margin-top: 1.5rem;
    }
    
    .scroll-hint {
        padding: 10px 20px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .team-scroll-container {
        padding: 0 110px; /* Half card width for small mobile */
        overflow: hidden;
        width: 100%;
    }
    
    .team-scroll-wrapper {
        width: 100%;
    }
    
    .team-member {
        flex: 0 0 220px;
        min-height: 320px;
        max-width: 220px;
    }
    
    .member-image {
        height: 120px;
    }
    
    .member-initials {
        font-size: 2rem;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background: #000000;
    color: #ffffff;
}

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

.partners-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #EB0028;
    font-family: Inter;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
    max-width: 600px;
    margin: 0 auto;
    white-space: nowrap;
    text-align: center;
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.partners-scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partners-row {
    display: flex;
    gap: 3rem;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.partners-row:nth-child(2) {
    animation: scroll-right 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    border-color: rgba(235, 0, 40, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(235, 0, 40, 0.2);
}

.logo-placeholder {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: Inter;
    white-space: nowrap;
    text-align: center;
    z-index: 1;
    position: relative;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Speakers Section */
.speakers-section {
    padding: 40px 0 40px 0;
    background: #000000;
    color: #ffffff;
}

.speakers-header {
    text-align: center;
    margin-bottom: 1rem;
}

.speakers-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #EB0028;
    font-family: Inter;
}

.speakers-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
    max-width: 600px;
    margin: 0 auto;
}

.speakers-container {
    position: relative;
    width: 100%;
}

.speakers-scroll-indicator {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out;
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-hint:hover {
    background: rgba(235, 0, 40, 0.1);
    border-color: rgba(235, 0, 40, 0.3);
    transform: translateY(-2px);
}

.scroll-text {
    font-size: 0.9rem;
    color: #cccccc;
    font-family: Inter;
    font-weight: 500;
    white-space: nowrap;
}

.scroll-arrows {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.scroll-arrow-left,
.scroll-arrow-right {
    color: #EB0028;
    animation: bounceHorizontal 2s ease-in-out infinite;
}

.scroll-arrow-right {
    animation-delay: 0.5s;
}

@keyframes bounceHorizontal {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-3px);
    }
    60% {
        transform: translateX(3px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.speakers-scroll-container {
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}

.speakers-scroll-container:active {
    cursor: grabbing;
}

.speakers-scroll-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.5rem 0;
    will-change: transform;
    transform-origin: left center;
}

.speakers-scroll-wrapper.smooth-scroll {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speakers-scroll-wrapper.momentum-scroll {
    transition: none;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 390px;
}

.speaker-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 0, 40, 0.3);
}

.speaker-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EB0028, #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaker-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(235, 0, 40, 0.8), rgba(255, 68, 68, 0.6));
    opacity: 0.9;
}

.speaker-initials {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: Inter;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.speaker-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.speaker-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: Inter;
}

.speaker-title {
    font-size: 1rem;
    color: #EB0028;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: Inter;
}

.speaker-topic {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: Inter;
    line-height: 1.4;
}

.speaker-bio {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: Inter;
    flex: 1;
}


.volunteer-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Stilleri */
.volunteer-application {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: Inter;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: Inter;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    overflow-y: hidden;
}

.form-group input[type="date"] {
    color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EB0028;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(235, 0, 40, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.volunteer-submit {
    background: #EB0028;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Inter;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.volunteer-submit:hover {
    background: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 0, 40, 0.3);
}

.volunteer-cta {
    text-align: center;
    margin-top: 2rem;
}

.volunteer-apply-btn {
    display: inline-block;
    background: #EB0028;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Inter;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.volunteer-apply-btn:hover {
    background: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 0, 40, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Volunteer Page Styles */
.volunteer-page {
    min-height: 100vh;
    background: #000000;
    padding: 120px 0 80px;
}

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

.volunteer-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: Inter;
    letter-spacing: -0.05em;
}

.volunteer-page-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: Inter;
}

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

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

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

.form-row.full-width {
    grid-template-columns: 1fr;
}

.volunteer-benefits {
    margin: 4rem 0;
    text-align: center;
}

.volunteer-benefits h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: Inter;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 0, 40, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: Inter;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: Inter;
}

.volunteer-form-container {
    position: sticky;
    top: 120px;
}

/* Responsive Design for Volunteer Page */
@media (max-width: 1024px) {
    .volunteer-page-content {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .volunteer-form-container {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .volunteer-page {
        padding: 100px 0 60px;
    }
    
    .volunteer-page-title {
        font-size: 2.5rem;
    }
    
    .volunteer-page-subtitle {
        font-size: 1.1rem;
    }
    
    .volunteer-benefits h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .volunteer-page-title {
        font-size: 2rem;
    }
    
    .volunteer-page-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
}

.volunteer-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: Inter;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: Inter;
    font-size: 1rem;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    overflow-y: hidden;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.volunteer-submit {
    width: 100%;
    background: #EB0028;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Inter;
}

.volunteer-submit:hover {
    background: #d60025;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: Inter;
    text-align: justify;
}

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

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-family: Inter;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-link:hover {
    color: #EB0028;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: Inter;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-family: Inter;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #EB0028;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: Inter;
}

.contact-label {
    font-size: 0.9rem;
    color: #EB0028;
    font-weight: 500;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-text {
    color: #cccccc;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: #888888;
    font-family: Inter;
}

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

.footer-bottom-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Inter;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #EB0028;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .react-text {
        font-size: 3.5rem;
    }
    
    .before-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 350px !important;
        height: 55px !important;
    }
    
    .navbar {
        overflow: hidden;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1rem;
        overflow: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-left,
    .nav-right {
        margin: 0;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        overflow: hidden;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .react-text {
        font-size: 3rem;
    }
    
    .before-text {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

    .team-title {
        font-size: 2.5rem;
    }

    .partners-title,
    .speakers-title {
        font-size: 2.5rem;
    }
    
    /* Counter Section Mobile */
    .counter-section {
        padding: 40px 0;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-label {
        font-size: 1rem;
    }
    
    .speakers-container {
        gap: 1.5rem;
    }
    
    .speakers-scroll-container {
        padding: 0 20px;
        overflow: hidden;
        width: 100%;
    }
    
    .speakers-scroll-wrapper {
        width: 100%;
    }
    
    .speaker-card {
        flex: 0 0 280px;
        min-height: 350px;
        max-width: 280px;
    }
    
    .speaker-image {
        height: 120px;
    }
    
    .speaker-initials {
        font-size: 2rem;
    }
    
    /* Partners Section Mobile */
    .partners-scroll-container {
        margin-top: 1.5rem;
        overflow: hidden;
        width: 100%;
    }
    
    .partners-scroll-wrapper {
        width: 100%;
    }
    
    .partners-row {
        gap: 2rem;
    }
    
    .partner-logo {
        min-width: 150px;
        height: 80px;
        padding: 1rem 1.5rem;
    }
    
    .logo-placeholder {
        font-size: 0.9rem;
    }
    
    /* Section Padding Mobile */
    .about-section,
    .speakers-section,
    .team-section,
    .partners-section {
        padding: 60px 0;
        overflow: hidden;
        width: 100%;
    }
    
    .about-content,
    .speakers-container,
    .team-container,
    .partners-container {
        max-width: 100%;
        overflow: hidden;
    }

    .footer {
        overflow: hidden;
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo-img {
        width: 180px;
    }

    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Fix small mobile overflow issues */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    /* Navigation for small screens */
    .nav-container {
        padding: 0 10px;
        height: 70px;
    }
    
    .nav-menu {
        top: 70px;
    }
    
    /* Hero section for small screens */
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        max-width: 250px;
    }
    
    /* Counter section for small screens */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    /* About section for small screens */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer for small screens */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .logo-img {
        width: 300px !important;
        height: 47px !important;
    }
    
    /* Language Switcher Small Mobile */
    .floating-language-switcher {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        gap: 4px;
    }
    
    .lang-btn {
        padding: 4px;
        width: 30px;
        height: 30px;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .react-text {
        font-size: 2.5rem;
    }
    
    .before-text {
        font-size: 1.5rem;
    }
    
    /* Counter Section Small Mobile */
    .counter-section {
        padding: 30px 0;
    }
    
    .countdown-title {
        font-size: 1.8rem;
    }
    
    .countdown-subtitle {
        font-size: 0.9rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-placeholder {
        width: 100px;
        height: 100px;
    }

    .member-initials {
        font-size: 1.5rem;
    }

    .team-title {
        font-size: 2rem;
    }

    .partners-title,
    .speakers-title,
    .volunteer-title {
        font-size: 2rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-logo {
        min-width: auto;
        padding: 1.5rem 2rem;
    }

    .speakers-container {
        width: 100%;
    }
    
    .speakers-scroll-indicator {
        margin-top: 0.75rem;
    }
    
    .scroll-hint {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 16px;
        height: 16px;
    }
    
    .speakers-scroll-container {
        padding: 0 15px;
        overflow: hidden;
        width: 100%;
    }
    
    .speakers-scroll-wrapper {
        width: 100%;
    }
    
    .speaker-card {
        flex: 0 0 240px;
        min-height: 320px;
        max-width: 240px;
    }
    
    .speaker-image {
        height: 100px;
    }
    
    .speaker-initials {
        font-size: 1.8rem;
    }
    
    /* Partners Section Small Mobile */
    .partners-scroll-container {
        margin-top: 1rem;
        overflow: hidden;
        width: 100%;
    }
    
    .partners-scroll-wrapper {
        width: 100%;
    }
    
    .partners-row {
        gap: 1.5rem;
    }
    
    .partner-logo {
        min-width: 120px;
        height: 70px;
        padding: 0.8rem 1.2rem;
    }
    
    .logo-placeholder {
        font-size: 0.8rem;
    }
    
    /* Section Padding Small Mobile */
    .about-section,
    .speakers-section,
    .team-section,
    .partners-section {
        padding: 40px 0;
        overflow: hidden;
        width: 100%;
    }
    
    .about-content,
    .speakers-container,
    .team-container,
    .partners-container {
        max-width: 100%;
        overflow: hidden;
    }

    .footer {
        overflow: hidden;
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-section {
        text-align: center;
    }

    .footer-section:first-child {
        grid-column: 1;
        margin-bottom: 0;
    }

    .footer-logo-img {
        width: 160px;
    }

    .footer-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* FAQ Page Styles */
.faq-page-header {
    padding: 120px 0 80px;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.faq-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: Inter;
    letter-spacing: -0.05em;
}

.faq-page-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.6;
    font-family: Inter;
}

.faq-content {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 2rem;
    font-family: Inter;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 0, 40, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 0, 40, 0.5);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(235, 0, 40, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: Inter;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EB0028;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-family: Inter;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-page-header {
        padding: 100px 0 60px;
    }
    
    .faq-page-title {
        font-size: 2.5rem;
    }
    
    .faq-page-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-content {
        padding: 60px 0;
    }
    
    .faq-category-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-page-title {
        font-size: 2rem;
    }
    
    .faq-page-subtitle {
        font-size: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Coming Soon Page Styles */
.coming-soon-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 0;
    overflow: hidden;
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .coming-soon-hero {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Touch-friendly button sizes */
    .volunteer-submit {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Better touch targets */
    .checkbox-label {
        min-height: 44px;
        padding: 8px 0;
    }
    
    .social-link {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(235, 0, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(235, 0, 40, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(235, 0, 40, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(235, 0, 40, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(235, 0, 40, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(235, 0, 40, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(235, 0, 40, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(235, 0, 40, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(235, 0, 40, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    }
}

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

.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-logo {
    margin-bottom: 2rem;
}

.main-logo {
    width: 400px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.coming-soon-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #EB0028 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(235, 0, 40, 0.3);
}

.coming-soon-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #EB0028;
    margin-bottom: 2rem;
    font-family: Inter;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: Inter;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow svg {
    width: 16px;
    height: 62px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 1rem;
    font-family: Inter;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    font-family: Inter;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Social Section */
.social-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.social-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 1rem;
    font-family: Inter;
}

.social-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-family: Inter;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    background: rgba(235, 0, 40, 0.1);
    border-color: rgba(235, 0, 40, 0.3);
    transform: translateY(-5px);
    color: #ffffff;
    text-decoration: none;
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: Inter;
}

/* Responsive Design for Coming Soon */
@media (max-width: 1024px) {
    .coming-soon-container {
        padding: 0 30px;
    }
    
    .main-logo {
        width: 350px;
    }
    
    .coming-soon-title {
        font-size: 4rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-hero {
        padding: 100px 0 0;
        min-height: 100vh;
    }
    
    .coming-soon-container {
        padding: 0 20px;
    }
    
    .coming-soon-content {
        max-width: 100%;
    }
    
    .main-logo {
        width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1;
        padding: 0 10px;
    }
    
    .coming-soon-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .newsletter-section {
        padding: 30px 0;
    }
    
    .newsletter-content {
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .volunteer-form {
        padding: 1.5rem;
    }
    
    .volunteer-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .form-rows {
        gap: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Custom select styling for mobile */
    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    .volunteer-submit {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .social-section {
        padding: 40px 0;
    }
    
    .social-content {
        padding: 0 20px;
    }
    
    .social-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
        flex: 1;
        max-width: 120px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-hero {
        padding: 80px 0 0;
    }
    
    .coming-soon-container {
        padding: 0 15px;
    }
    
    .main-logo {
        width: 220px;
        margin-bottom: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .coming-soon-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content {
        padding: 0 15px;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .volunteer-form {
        padding: 1rem;
    }
    
    .volunteer-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-rows {
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .form-hint {
        font-size: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        font-size: 10px;
    }
    
    .volunteer-submit {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .social-section {
        padding: 30px 0;
    }
    
    .social-content {
        padding: 0 15px;
    }
    
    .social-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .social-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.8rem;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .social-link span {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .coming-soon-container {
        padding: 0 10px;
    }
    
    .main-logo {
        width: 200px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        line-height: 1;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-description {
        font-size: 0.85rem;
    }
    
    .newsletter-content {
        padding: 0 10px;
    }
    
    .volunteer-form {
        padding: 0.8rem;
    }
    
    .social-content {
        padding: 0 10px;
    }
}

/* Animations */

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Optimize scroll performance */
* {
    will-change: auto;
}

html, body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Remove all outlines */
* {
    outline: none !important;
}

*:focus,
*:active,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(235, 0, 40, 0.2);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #EB0028 0%, #ff4444 100%);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    position: relative;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.modal-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 140px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #EB0028 0%, #ff4444 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(235, 0, 40, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 0, 40, 0.4);
}

.modal-btn-secondary {
    background: transparent;
    color: #cccccc;
    border: 2px solid #444;
}

.modal-btn-secondary:hover {
    background: #444;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-text {
        font-size: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .close-modal {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Schedule Section */
.schedule-section {
    padding: 40px 0;
    background: #000000;
    color: #ffffff;
}

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

.schedule-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #EB0028;
    font-family: Inter;
}

.schedule-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
}

.schedule-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 2rem;
}

.schedule-item:hover {
    background: rgba(235, 0, 40, 0.05);
    border-color: rgba(235, 0, 40, 0.3);
    transform: translateY(-2px);
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EB0028;
    min-width: 180px;
    margin-right: 2rem;
    font-family: Inter;
}

.schedule-event {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: Inter;
    font-weight: 500;
}

/* Venue Section */
.venue-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.venue-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.venue-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
}

.venue-content {
    max-width: 800px;
    margin: 0 auto;
}

.venue-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(235, 0, 40, 0.2);
}

.venue-details h3 {
    font-size: 1.5rem;
    color: #EB0028;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.venue-details p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.venue-address {
    background: rgba(235, 0, 40, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #EB0028;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Tickets Section */
.tickets-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.tickets-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.tickets-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: Inter;
}

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

.ticket-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(235, 0, 40, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ticket-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ticket-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB0028;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.ticket-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #EB0028;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .schedule-section,
    .venue-section,
    .tickets-section {
        padding: 60px 0;
    }
    
    .schedule-title,
    .venue-title,
    .tickets-title {
        font-size: 2rem;
    }
    
    .schedule-subtitle,
    .venue-subtitle,
    .tickets-subtitle {
        font-size: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .schedule-time {
        margin-bottom: 0.5rem;
        margin-right: 0;
        min-width: auto;
        font-size: 1.1rem;
    }
    
    .schedule-event {
        font-size: 1.1rem;
    }
    
    .venue-info,
    .ticket-card {
        padding: 2rem;
    }
    
    .ticket-price {
        font-size: 2rem;
    }
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}