* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: #000;
    color: white;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(1.15);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SCROLL ANIMATIONS */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.fade-in-up {
    transform: translateY(60px);
}

.scroll-animate.fade-in-down {
    transform: translateY(-60px);
}

.scroll-animate.fade-in-left {
    transform: translateX(-60px);
}

.scroll-animate.fade-in-right {
    transform: translateX(60px);
}

.scroll-animate.zoom-in {
    transform: scale(0.85);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animations for child elements */
.welcome-grid.scroll-animate.animated .welcome-left,
.welcome-grid.scroll-animate.animated .welcome-right {
    animation: fadeInUp 0.8s ease-out forwards;
}

.speakers-layout.scroll-animate.animated .speakers-left,
.speakers-layout.scroll-animate.animated .speakers-right {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* NAVBAR */
.navbar {
    width: 100%;
    max-width: 100vw;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #000;
    color: #ffffff;
    z-index: 1000;
    overflow: visible;
    animation: fadeInDown 0.8s ease-out;
}

.navbar .logo {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.navbar .menu a:nth-child(1) {
    animation: fadeIn 0.6s ease-out 0.4s backwards;
}

.navbar .menu a:nth-child(2) {
    animation: fadeIn 0.6s ease-out 0.5s backwards;
}

.navbar .menu a:nth-child(3) {
    animation: fadeIn 0.6s ease-out 0.6s backwards;
}

.navbar .menu a:nth-child(4) {
    animation: fadeIn 0.6s ease-out 0.7s backwards;
}

.navbar .menu a:nth-child(5) {
    animation: fadeIn 0.6s ease-out 0.8s backwards;
}

.navbar .header-images {
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.menu > a {
    margin: 0 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.menu > a:hover {
    opacity: 1;
}

/* DROPDOWN STYLES */
.dropdown {
    position: relative;
    margin: 0 8px;
}

.dropdown-toggle {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    opacity: 1;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    padding: 8px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #2a2a2a;
    opacity: 1;
}

/* MENU CLOSE BUTTON */

.contact-btn {
    background: #ff0099;
    padding: 12px 24px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/main_bg.jpg") center/cover no-repeat;
    animation: fadeInZoom 1.5s ease-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
    animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.content {
    position: relative;
    z-index: 2;
    padding: 0 50px;
    max-width: 900px;
    margin-top: 0;
}

.content .event-info {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.content .title {
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.content .subtitle {
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.content .btn-group {
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

.content .sponsor-section {
    animation: fadeInUp 0.8s ease-out 1.1s backwards;
}

.event-info {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.event-info span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-info .calendar-icon,
.event-info .location-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
    opacity: 0.9;
    display: inline-block;
    vertical-align: middle;
}

.title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-top: 0;
    margin-bottom: 32px;
    color: #ffffff;
}

.btn-group {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.primary {
    background: #ff0099;
    color: #ffffff;
    border: none;
}

.primary:hover {
    background: #e60088;
    transform: translateY(-2px);
}

.outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* SPONSORS */
/* .sponsor-section {
    margin-top: 30px;
   
}

.sponsor-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    opacity: 0.9;
}

.sponsors {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    
}

.sponsors img {
    height: 150px;
    width: 100;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s ease;
}

.sponsors img:hover {
    opacity: 1;
} */




/* MARQUEE SECTION */
.marquee-container {
    width: 100%;
    background: #ff0099;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.marquee-content span {
    display: inline-block;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 50px;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-83.333%);
    }
}

/* FOOTER TEXT + REMIX */
.footer-cta {
    position: absolute;
    bottom: 40px;
    right: 50px;
    text-align: right;
    max-width: 380px;
    animation: fadeIn 1s ease-out 1.3s backwards;
}

.footer-cta .text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 16px;
    opacity: 0.9;
}

.remix-btn {
    background: #ff0099;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.remix-btn:hover {
    background: #e60088;
    transform: translateY(-2px);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* SECTION COMMON STYLES */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: center;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* WELCOME SECTION */
.welcome-section {
    background: #ffffff;
    padding: 120px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.welcome-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ff0099;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.welcome-image {
    width: 100%;
    margin-top: 5px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.welcome-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.desc-block h5 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.desc-block p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    line-height: 1.6;
}

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

.experience-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-icon {
    width: 20px;
    height: 20px;
    fill: #ff0099;
    flex-shrink: 0;
}

/* SPEAKERS SECTION */
.speakers-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.speakers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.speakers-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speakers-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.speakers-title {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.speakers-info-box {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    margin-top: 120px;
    position: relative;
    right: 90px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.microphone-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    fill: #ffffff;
}

.speakers-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.view-lineup-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #ff0099;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.view-lineup-btn:hover {
    background: #e60088;
    transform: translateY(-2px);
}

.people-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.speakers-right {
    display: flex;
    align-items: start;
    width: 100%;
}

.speakers-grids-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

.speakers-scroll-container {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.speakers-scroll-wrapper {
    display: flex;
    flex-direction: column;
    will-change: transform;
    gap: 32px;
}

.speakers-scroll-down .speakers-scroll-wrapper {
    animation: scroll-down 20s linear infinite;
}

.speakers-scroll-up .speakers-scroll-wrapper {
    animation: scroll-up 20s linear infinite;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    flex-shrink: 0;
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 16px));
    }
}

@keyframes scroll-up {
    0% {
        transform: translateY(calc(-50% - 16px));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.speaker-card {
    text-align: left;
}

.speaker-image {
    width: 100%;
    height: 280px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
    display: block;
}

.speaker-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.speaker-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

/* WHO ATTENDS SECTION */
.who-attends-section {
    background: #f83784;
    padding: 120px 0;
}

.who-attends-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

.who-attends-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
}

.who-attends-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.who-attends-left,
.who-attends-right {
    display: flex;
    flex-direction: column;
}

.who-attends-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.panel-image video {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.audience-category {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
}

.category-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.category-icon path {
    fill: #000000;
}

.category-content {
    flex: 1;
}

.audience-category h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.audience-category p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.category-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* AGENDA SECTION */
.agenda-section {
    background: #ffffff;
    padding: 120px 0;
}

.agenda-list {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.agenda-time {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.agenda-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.agenda-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.agenda-speaker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff0099;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

.testimonials-section .section-title {
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-rows-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.testimonials-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-row::before,
.testimonials-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-row::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-row::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-scroll-wrapper {
    display: flex;
    flex-direction: row;
    will-change: transform;
    gap: 24px;
}

.testimonials-row-top .testimonials-scroll-wrapper {
    animation: testimonials-scroll-left 10s linear infinite;
}

.testimonials-row-bottom .testimonials-scroll-wrapper {
    animation: testimonials-scroll-right 10s linear infinite;
}

.testimonials-row:hover .testimonials-scroll-wrapper {
    animation-play-state: paused;
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    min-width: max-content;
    flex-shrink: 0;
}

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

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

@keyframes testimonials-scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    min-width: 50px;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ff0066;
    line-height: 1;
    margin-bottom: 12px;
    position: absolute;
    top: 16px;
    left: 20px;
    opacity: 0.25;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-author h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    opacity: 0.6;
    margin: 0;
}

/* GALLERY SECTION */
.gallery-section {
    background: #000000;
    padding: 120px 0;
    overflow: hidden;
}

.gallery-section .container {
    max-width: 1400px;
    padding: 0 50px;
}

.gallery-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    text-align: center;
}

.gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 60px 0;
    text-align: center;
}

.gallery-grids-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    position: relative;
}

.gallery-grids-container::before,
.gallery-grids-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.gallery-grids-container::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
}

.gallery-grids-container::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
}

.gallery-scroll-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-wrapper {
    display: flex;
    flex-direction: column;
    will-change: transform;
    gap: 16px;
}

.gallery-scroll-down .gallery-scroll-wrapper {
    animation: gallery-scroll-down 25s linear infinite;
}

.gallery-scroll-up .gallery-scroll-wrapper {
    animation: gallery-scroll-up 25s linear infinite;
}

.gallery-scroll-container:hover .gallery-scroll-wrapper {
    animation-play-state: paused;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    flex-shrink: 0;
}

.gallery-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: #1a1a1a;
    aspect-ratio: 1 / 1.2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@keyframes gallery-scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 8px));
    }
}

@keyframes gallery-scroll-up {
    0% {
        transform: translateY(calc(-50% - 8px));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes gallery-scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

/* SPONSORS FULL SECTION */
.sponsors-full-section {
    background: #ffffff;
    padding: 120px 0;
}

.sponsors-full-section .container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
}

.sponsors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Opportunities row - image left, content right */
.sponsors-row-opportunities .sponsors-row-image {
    grid-column: 1;
}

.sponsors-row-opportunities .sponsors-row-content {
    grid-column: 2;
}

.sponsors-row-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.sponsors-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sponsors-row-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sponsors-row-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff0066;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.sponsors-row-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.0;
    letter-spacing: -1px;
    margin: 0;
}

.sponsors-row-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sponsors-row-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sponsors-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.sponsors-row-list li span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.sponsors-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid #000000;
    border-radius: 50px;
    background: transparent;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
}

.sponsors-btn:hover {
    background: #000000;
    color: #ffffff;
}

.sponsors-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Reverse order for Impact row - content left, image right */
.sponsors-row-impact {
    grid-template-columns: 1fr 1fr;
}

.sponsors-row-impact .sponsors-row-content {
    grid-column: 1;
}

.sponsors-row-impact .sponsors-row-image {
    grid-column: 2;
}

/* TICKETS SECTION */
.tickets-section {
    background: #000;
    padding: 120px 0;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-card {
    background: #1a1a1a;
    padding: 48px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ticket-card.featured {
    border-color: #ff0099;
}

.ticket-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.ticket-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 32px;
    line-height: 1.6;
}

.ticket-price {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ff0099;
    margin-bottom: 32px;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.ticket-features li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.ticket-features li::before {
    content: "✓";
    color: #ff0099;
    position: absolute;
    left: 0;
}

.ticket-btn {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.ticket-btn.primary {
    background: #ff0099;
    border-color: #ff0099;
}

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

.ticket-btn.primary:hover {
    background: #e60088;
    border-color: #e60088;
}

/* FAQ SECTION */
.faq-section {
    background: #0a0a0a;
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    line-height: 1.6;
}

.contact-us-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ff0099;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    max-width: 200px;
}

.contact-us-btn:hover {
    background: #e60088;
    transform: translateY(-2px);
}

/* SECTION DIVIDER */
.section-divider {
    width: 100%;
    height: 3px;
    background: #FF0099;
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #ff0066;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 0, 102, 0.3);
    padding: 0;
    margin: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: #e6005c;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 0, 102, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

/* FOOTER */
.main-footer {
    background: #ffffff;
    padding: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 40px;
}

.main-footer .container {
    padding: 40px 50px;
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.footer-left h2{
    font-size: 15px;
    font-weight: 800;
    color: #4a4a4a;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 10px;
    width: 100%;
    align-self: flex-start;
}

.footer-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-contact-info {
    font-family: 'Inter', sans-serif;
    color: #000000;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    text-align: left;
}

.contact-person {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: left;
}

.contact-title {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 15px 0;
    text-align: left;
}

.footer-contact-info .contact-title {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 15px 0;
    text-align: left;
}

.contact-address {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 10px 0;
    text-align: left;
}

.contact-email {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-align: left;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.footer-right h2 {
    font-size: 15px;
    font-weight: 800;
    color: #4a4a4a;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.footer-headings {
    text-align: center;
    margin-bottom: 20px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 8px 0;
}

.footer-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 60px 0;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.4s ease, color 0.3s ease;
    position: relative;
}

.footer-nav a:hover {
    color: #ff0066;
    transform: translateY(4px);
}

.nav-dot {
    width: 4px;
    height: 4px;
    background: #ff0066;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-author {
    flex: 0 0 auto;
}

.footer-author p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

.footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.footer-powered {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.footer-framer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-framer-btn:hover {
    border-color: #000000;
    background: #f5f5f5;
}

.framer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-remix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #ff0066;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-remix-btn:hover {
    background: #e6005c;
    transform: translateY(-2px);
}

/* HAMBURGER MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.menu-toggle.active {
    background: rgba(255, 0, 153, 0.1);
}

.menu-toggle.active span {
    background: #ffffff;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 25px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    width: 25px;
}

.header-images {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 100px;
}

.header-images img {
    max-width: 100%;
    height: auto;
}

/* MEDIA QUERIES - MEDIUM SCREEN (900px - 1200px) */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .navbar {
        padding: 10px 20px;
    }

    .logo img {
        width: 140px !important;
        height: 140px !important;
    }

    .header-images {
        width: 90px !important;
        height: 55px !important;
    }

    .header-images img {
        width: 110px !important;
        height: 110px !important;
    }

    .menu {
        gap: 3px;
        flex-wrap: nowrap;
    }

    .menu > a {
        margin: 0 4px;
        font-size: 13px;
        padding: 5px 2px;
    }

    .dropdown {
        margin: 0 4px;
    }

    .dropdown-toggle {
        font-size: 13px;
        padding: 5px 2px;
    }

    .dropdown-menu {
        min-width: 160px;
        font-size: 12px;
    }

    .sponsors-full-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .sponsors-row {
        gap: 60px;
    }

    .sponsors-row-title {
        font-size: 42px;
    }
}

/* MEDIA QUERIES - LARGE DESKTOP (1400px+) */
@media screen and (min-width: 1400px) {
    .speakers-layout {
        gap: 100px;
    }

    .speakers-title {
        font-size: 38px;
    }

    .speakers-info-box {
        max-width: 400px;
    }

    .speakers-scroll-container {
        height: 520px;
    }

    .speaker-image {
        height: 300px;
    }
}

/* MEDIA QUERIES - DESKTOP (1200px - 1400px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .speakers-layout {
        gap: 90px;
    }

    .speakers-title {
        font-size: 36px;
    }

    .speakers-scroll-container {
        height: 500px;
    }

    .speaker-image {
        height: 290px;
    }
}

/* MEDIA QUERIES - TABLET (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 12px 25px;
    }

    .logo img {
        width: 110px !important;
        height: 110px !important;
    }

    .header-images {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        gap: 0;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .menu > a {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown {
        width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .title {
        font-size: 60px;
    }

    .subtitle {
        font-size: 45px;
    }

    .hero {
        padding-top: 120px;
        min-height: 100vh;
        height: auto;
    }

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

    .title {
        font-size: 50px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .event-info {
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 20px;
    }

    .event-info span {
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 18px;
    }

    .btn-group {
        gap: 15px;
        margin-top: 30px;
    }

    .footer-cta {
        bottom: 30px;
        right: 30px;
    }

    .footer-cta .text {
        max-width: 300px;
        font-size: 16px;
    }

    /* NEW SECTIONS TABLET */
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .welcome-title {
        font-size: 48px;
    }

    .welcome-image {
        margin-top: 20px;
    }

    .welcome-right {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Speakers Section - Tablet */
    .speakers-section {
        padding: 50px 0;
    }

    .speakers-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .speakers-left {
        gap: 20px;
    }

    .speakers-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .speakers-info-box {
        margin-top: 40px;
        right: 0;
        max-width: 100%;
        padding: 20px;
    }

    .speakers-grids-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .speakers-scroll-container {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speakers-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .speakers-scroll-wrapper {
        flex-direction: row;
        gap: 24px;
        animation: none;
    }

    .speakers-scroll-down .speakers-scroll-wrapper,
    .speakers-scroll-up .speakers-scroll-wrapper {
        animation: scroll-horizontal 30s linear infinite;
    }

    .speakers-scroll-up .speakers-scroll-wrapper {
        animation-direction: reverse;
    }

    .speakers-grid {
        display: flex;
        flex-direction: row;
        gap: 24px;
        min-width: max-content;
    }

    .speaker-card {
        min-width: 280px;
        flex-shrink: 0;
    }

    .speaker-image {
        height: 240px;
    }

    .speaker-card h4 {
        font-size: 18px;
    }

    .speaker-card p {
        font-size: 13px;
    }

    .who-attends-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-attends-center {
        order: -1;
    }

    .panel-image {
        max-width: 100%;
        height: 400px;
    }
    
    .panel-image video {
        height: 400px;
    }

    .gallery-title {
        font-size: 36px;
        text-align: left;
    }

    .gallery-label {
        text-align: left;
    }

    .gallery-grids-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-scroll-container {
        height: auto;
        min-height: 350px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .gallery-scroll-wrapper {
        flex-direction: row;
        gap: 16px;
        animation: none;
        height: 100%;
        align-items: stretch;
    }

    .gallery-scroll-down .gallery-scroll-wrapper,
    .gallery-scroll-up .gallery-scroll-wrapper {
        animation: gallery-scroll-horizontal 30s linear infinite;
    }

    .gallery-scroll-up .gallery-scroll-wrapper {
        animation-direction: reverse;
    }

    .gallery-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        min-width: max-content;
        grid-template-columns: none;
        height: 100%;
        align-items: stretch;
    }

    .gallery-item {
        min-width: 280px;
        width: 280px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1.2;
        height: auto;
        min-height: 336px; /* Fallback: 280px * 1.2 */
        display: block;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        min-height: 336px;
        object-fit: cover;
        display: block;
    }


    .sponsors-full-section {
        padding: 80px 0;
    }

    .sponsors-full-section .container {
        gap: 60px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .sponsors-row {
        grid-template-columns: 1fr !important;
        gap: 40px;
        display: grid !important;
    }

    .sponsors-row-opportunities .sponsors-row-image,
    .sponsors-row-opportunities .sponsors-row-content {
        grid-column: 1 !important;
    }

    .sponsors-row-impact .sponsors-row-content,
    .sponsors-row-impact .sponsors-row-image {
        grid-column: 1 !important;
    }

    .sponsors-row-image {
        width: 100% !important;
        height: 400px;
        order: -1;
        margin: 0;
        padding: 0;
    }

    .sponsors-row-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sponsors-row-content {
        gap: 24px;
        width: 100%;
        order: 2;
    }

    .sponsors-row-title {
        font-size: 36px;
    }

    .sponsors-row-list {
        gap: 16px;
    }

    .sponsors-row-list li span {
        font-size: 15px;
    }

    .sponsors-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .sponsors-row-impact .sponsors-row-image {
        order: -1;
    }

    .sponsors-row-impact .sponsors-row-content {
        order: 2;
    }

    .main-footer .container {
        padding: 35px 40px;
    }

    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-logo {
        max-width: 250px;
    }

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

    .contact-person {
        font-size: 15px;
    }

    .contact-title {
        font-size: 13px;
    }

    .footer-contact-info .contact-title {
        font-size: 13px;
        margin: 0 0 15px 0;
    }

    .contact-address {
        font-size: 12px;
    }

    .contact-email {
        font-size: 12px;
    }

    .footer-center {
        align-items: center;
    }

    .footer-right {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-right h2 {
        text-align: left;
    }

    .footer-contact-info {
        text-align: left;
    }

    .footer-headings {
        margin-bottom: 50px;
    }

    .footer-title {
        font-size: 56px;
        letter-spacing: -1.5px;
    }

    .footer-subtitle {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .footer-nav {
        margin: 35px 0 50px 0;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 15px;
    }

    .footer-bottom {
        gap: 24px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-actions {
        gap: 10px;
    }

    .testimonials-grids-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-scroll-container {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .testimonials-scroll-left .testimonials-scroll-wrapper {
        animation: testimonials-scroll-left 30s linear infinite;
    }

    .testimonials-scroll-right .testimonials-scroll-wrapper {
        animation: testimonials-scroll-right 30s linear infinite;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 24px;
        min-width: max-content;
    }

    .testimonial-card {
        min-width: 240px;
        min-height: 180px;
        flex-shrink: 0;
    }

    .marquee-content span {
        font-size: 14px;
        padding: 0 30px;
    }

}

/* MEDIA QUERIES - HIDE HEADER IMAGES ON MEDIUM SCREENS */
@media screen and (max-width: 900px) {
    .header-images {
        display: none !important;
    }
}

/* MEDIA QUERIES - MOBILE AND TABLET (up to 768px) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .logo {
        width: 80px !important;
        height: 50px !important;
    }

    .logo img {
        width: 100px !important;
        height: 100px !important;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        gap: 0;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .menu > a {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown {
        width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-images {
        display: none;
    }

    .header-images img {
        width: 30px !important;
        height: 30px !important;
        margin-left: 5px !important;
    }

    .hero {
        padding-top: 90px;
        min-height: 100vh;
        height: auto;
        padding-bottom: 40px;
    }

    .content {
        padding: 0 20px;
        margin: 0 auto;
    }

    .event-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .event-info span {
        margin-right: 0;
        font-size: 14px;
    }

    .title {
        font-size: 40px;
        margin-top: 15px;
    }

    .subtitle {
        font-size: 30px;
        margin-top: 8px;
    }

    .btn-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .sponsor-section {
        margin-top: 40px;
    }

    .sponsor-section h3 {
        font-size: 18px;
    }

    .sponsors {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .sponsors img {
        height: 25px;
        margin-right: 0;
    }

    .footer-cta {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: left;
        margin-top: 40px;
        padding: 0 20px;
    }

    .footer-cta .text {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .remix-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* MEDIA QUERIES - SMALL MOBILE (up to 480px) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo img {
        width: 80px !important;
        height: 80px !important;
    }

    .menu {
        width: 85%;
        padding: 70px 20px 20px;
    }

    .menu > a {
        font-size: 16px;
        margin: 12px 0;
    }

    .dropdown-toggle {
        font-size: 16px;
        margin: 12px 0;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .header-images img {
        width: 25px !important;
        height: 25px !important;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
        height: auto;
        padding-bottom: 30px;
    }

    .content {
        padding: 0 15px;
    }

    .title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .event-info {
        gap: 8px;
        margin-bottom: 15px;
    }

    .event-info span {
        font-size: 13px;
    }

    .btn-group {
        margin-top: 20px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .sponsors img {
        height: 20px;
    }

    .footer-cta .text {
        font-size: 14px;
    }

    .remix-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .marquee-container {
        padding: 10px 0;
    }

    .marquee-content span {
        font-size: 12px;
        padding: 0 20px;
    }

    /* NEW SECTIONS RESPONSIVE */
    .container {
        padding: 0 20px;
    }

    /* Speakers Section - Small Mobile (480px) */
    .speakers-section {
        padding: 30px 0;
    }

    .speakers-layout {
        gap: 30px;
    }

    .speakers-left {
        gap: 14px;
    }

    .speakers-label {
        font-size: 12px;
    }

    .speakers-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .speakers-info-box {
        margin-top: 24px;
        padding: 16px;
    }

    .microphone-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 8px;
    }

    .speakers-description {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .view-lineup-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

    .people-icon {
        width: 14px;
        height: 14px;
    }

    .speakers-grids-container {
        gap: 16px;
    }

    .speakers-scroll-container {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speakers-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .speakers-scroll-wrapper {
        flex-direction: row;
        gap: 16px;
        animation: none;
    }

    .speakers-scroll-down .speakers-scroll-wrapper,
    .speakers-scroll-up .speakers-scroll-wrapper {
        animation: scroll-horizontal 30s linear infinite;
    }

    .speakers-scroll-up .speakers-scroll-wrapper {
        animation-direction: reverse;
    }

    .speakers-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        min-width: max-content;
    }

    .speaker-card {
        min-width: 240px;
        flex-shrink: 0;
    }

    .speaker-image {
        height: 200px;
    }

    .speaker-card h4 {
        font-size: 15px;
    }

    .speaker-card p {
        font-size: 11px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 40px 0;
    }

    .stat-item h4 {
        font-size: 36px;
    }

    .welcome-description {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

    /* Speakers Section - Mobile */
    .speakers-section {
        padding: 40px 0;
    }

    .speakers-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .speakers-left {
        gap: 16px;
    }

    .speakers-label {
        font-size: 14px;
    }

    .speakers-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .speakers-info-box {
        margin-top: 30px;
        right: 0;
        max-width: 100%;
        padding: 18px;
    }

    .microphone-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 10px;
    }

    .speakers-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .view-lineup-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .speakers-grids-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .speakers-scroll-container {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speakers-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .speakers-scroll-wrapper {
        flex-direction: row;
        gap: 20px;
        animation: none;
    }

    .speakers-scroll-down .speakers-scroll-wrapper,
    .speakers-scroll-up .speakers-scroll-wrapper {
        animation: scroll-horizontal 30s linear infinite;
    }

    .speakers-scroll-up .speakers-scroll-wrapper {
        animation-direction: reverse;
    }

    .speakers-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        min-width: max-content;
    }

    .speaker-card {
        min-width: 260px;
        flex-shrink: 0;
    }

    .speaker-image {
        height: 220px;
    }

    .speaker-card h4 {
        font-size: 16px;
    }

    .speaker-card p {
        font-size: 12px;
    }

    .who-attends-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-attends-center {
        order: -1;
    }

    .panel-image {
        max-width: 100%;
        height: 350px;
    }
    
    .panel-image video {
        height: 350px;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-section .container {
        padding: 0 20px;
    }

    .gallery-label {
        text-align: left;
    }

    .gallery-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: left;
    }

    .gallery-grids-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-scroll-container {
        height: auto;
        min-height: 320px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .gallery-scroll-wrapper {
        flex-direction: row;
        gap: 16px;
        animation: none;
        height: 100%;
        align-items: stretch;
    }

    .gallery-scroll-down .gallery-scroll-wrapper,
    .gallery-scroll-up .gallery-scroll-wrapper {
        animation: gallery-scroll-horizontal 30s linear infinite;
    }

    .gallery-scroll-up .gallery-scroll-wrapper {
        animation-direction: reverse;
    }

    .gallery-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        min-width: max-content;
        grid-template-columns: none;
        height: 100%;
        align-items: stretch;
    }

    .gallery-item {
        min-width: 260px;
        width: 260px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1.2;
        height: auto;
        min-height: 312px; /* Fallback: 260px * 1.2 */
        display: block;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        min-height: 312px;
        object-fit: cover;
        display: block;
    }

    .sponsors-full-section {
        padding: 60px 0;
    }

    .sponsors-full-section .container {
        gap: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .sponsors-row {
        grid-template-columns: 1fr !important;
        gap: 32px;
        display: grid !important;
    }

    .sponsors-row-opportunities .sponsors-row-image,
    .sponsors-row-opportunities .sponsors-row-content {
        grid-column: 1 !important;
    }

    .sponsors-row-impact .sponsors-row-content,
    .sponsors-row-impact .sponsors-row-image {
        grid-column: 1 !important;
    }

    .sponsors-row-image {
        width: 100% !important;
        height: 300px;
        order: -1;
        margin: 0;
        padding: 0;
    }

    .sponsors-row-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sponsors-row-content {
        gap: 20px;
        width: 100%;
        order: 2;
    }

    .sponsors-row-title {
        font-size: 28px;
        line-height: 1.1;
    }

    .sponsors-row-list {
        gap: 16px;
    }

    .sponsors-row-list li {
        gap: 12px;
    }

    .sponsors-icon {
        width: 18px;
        height: 18px;
    }

    .sponsors-row-list li span {
        font-size: 14px;
        line-height: 1.5;
    }

    .sponsors-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .sponsors-row-impact .sponsors-row-image {
        order: -1;
    }

    .sponsors-row-impact .sponsors-row-content {
        order: 2;
    }

    .audience-category {
        padding: 20px 0;
    }

    .audience-category h4 {
        font-size: 18px;
    }

    .audience-category p {
        font-size: 14px;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-grids-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-scroll-container {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .testimonials-scroll-left .testimonials-scroll-wrapper {
        animation: testimonials-scroll-left 30s linear infinite;
    }

    .testimonials-scroll-right .testimonials-scroll-wrapper {
        animation: testimonials-scroll-right 30s linear infinite;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        min-width: max-content;
    }

    .testimonial-card {
        min-width: 220px;
        min-height: 160px;
        flex-shrink: 0;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    /* Scroll to top button - Mobile */
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 25px;
        right: 25px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }

    .main-footer .container {
        padding: 30px 20px;
    }

    .footer-divider {
        margin-bottom: 30px;
    }

    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-logo {
        max-width: 220px;
        margin-bottom: 15px;
    }

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

    .contact-person {
        font-size: 14px;
    }

    .contact-title {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contact-address {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .contact-email {
        font-size: 11px;
    }

    .footer-center {
        align-items: center;
    }

    .footer-right {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-right h2 {
        text-align: left;
    }

    .footer-contact-info {
        text-align: left;
    }

    .footer-headings {
        margin-bottom: 40px;
    }

    .footer-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .footer-subtitle {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .footer-nav {
        margin: 30px 0 40px 0;
        gap: 8px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .nav-dot {
        width: 3px;
        height: 3px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-author {
        width: 100%;
        text-align: center;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
    }

    .footer-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-powered {
        display: none;
    }

    .footer-framer-btn {
        order: 2;
    }

    .footer-remix-btn {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .sponsors-full-section {
        padding: 50px 0;
    }

    .sponsors-full-section .container {
        gap: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .sponsors-row {
        grid-template-columns: 1fr !important;
        gap: 28px;
        display: grid !important;
    }

    .sponsors-row-opportunities .sponsors-row-image,
    .sponsors-row-opportunities .sponsors-row-content {
        grid-column: 1 !important;
    }

    .sponsors-row-impact .sponsors-row-content,
    .sponsors-row-impact .sponsors-row-image {
        grid-column: 1 !important;
    }

    .sponsors-row-image {
        width: 100% !important;
        height: 280px;
        order: -1;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .sponsors-row-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sponsors-row-content {
        gap: 18px;
        width: 100%;
        order: 2;
    }

    .sponsors-row-title {
        font-size: 24px;
        line-height: 1.1;
    }

    .sponsors-row-list {
        gap: 14px;
    }

    .sponsors-row-list li {
        gap: 10px;
    }

    .sponsors-icon {
        width: 16px;
        height: 16px;
    }

    .sponsors-row-list li span {
        font-size: 13px;
        line-height: 1.4;
    }

    .sponsors-btn {
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .sponsors-row-impact .sponsors-row-image {
        order: -1;
    }

    .sponsors-row-impact .sponsors-row-content {
        order: 2;
    }
}