html {
    scroll-behavior: smooth;
}

:root {
    --primary: #F4B400;
    --background: #000000;
    --text: #FAF6F0;
    --card-bg: #1A1A1A;
    --accent: #4285F4;
    --font-heading: 'Agbalumo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-special: 'Indie Flower', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.logo {
    height: 35px;
    width: 245px;
    transition: all 0.3s ease;
}

.location-tag {
    padding: 0.25rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('images/Group.jpg') center/cover;
}

.presents-tag {
    background: var(--text);
    color: var(--background);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.animated-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.main-title {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.title-tech { color: #4285F4; }
.title-ignit { color: #EA4335; }
.title-year { color: #34A853; }

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

.cta-button {
    background: var(--primary);
    color: var(--background);
    border: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Event Status Messages */
.event-status {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
    color: var(--primary);
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .event-status {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .event-status {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
}

.countdown-item.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: translateY(-5px) scale(1);
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.7);
    }
    70% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 0 10px rgba(244, 180, 0, 0);
    }
    100% {
        transform: translateY(-5px) scale(1);
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0);
    }
}

.countdown-item span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 10px rgba(244, 180, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

main {
    padding-top: 80px;
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.countdown-item:hover::before {
    transform: translateX(100%);
}

.countdown-item.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(244, 180, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0);
    }
}

.countdown-item span:first-child {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(244, 180, 0, 0.5);
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.event-started {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-in-out;
}

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

.event-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

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

.icon {
    font-size: 2rem;
}

.text {
    text-align: left;
}

.text small {
    opacity: 0.8;
    font-size: 0.875rem;
}

.schedule {
    padding: 4rem 2rem;
    background: #FDF5E6;
    color: #333; /* Darker text color for better contrast */
}

.schedule h2 {
    color: #000; /* Black color for the main heading */
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.schedule h3,
.schedule p,
.schedule .content h3,
.schedule .time,
.schedule .description {
    color: #333; /* Dark gray for other text */
}

.schedule-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: -20px;
    width: 2px;
    background: #000000;
}

.time {
    position: absolute;
    left: 0;
    font-weight: bold;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 85px;
    text-align: center;
    font-size: 0.9rem;
}

.room-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #000000;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333; /* Ensure text in content cards is dark */
}

.content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.speaker {
    color: #F4B400;
    font-weight: 500;
    margin: 0.5rem 0;
}

.description {
    color: #555; /* Slightly darker for better readability */
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.day-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.day-selector button {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--background);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.day-selector button.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Schedule Section */
.schedule {
    padding: 6rem 2rem;
    background: #fff9f0; /* Warmer milk color */
    color: #000; /* Set default text color to black */
    position: relative;
    overflow: hidden;
}

/* Schedule Tabs */
.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #000;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #000;
    font-size: 1rem;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

/* Schedule Days */
.schedule-day {
    display: none;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
    transition: opacity 0.3s ease;
}

.schedule-day.active {
    display: block;
    opacity: 1;
}

/* Ensure only one day is shown at a time */
.schedule-content {
    position: relative;
    min-height: 500px; /* Adjust based on your content */
}

.schedule-day {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.schedule-day.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

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

.schedule {
    padding: 4rem 0;
    overflow: hidden;
}

.schedule .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.schedule h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #000; /* Changed to black for better visibility */
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.schedule h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 4rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    display: block;
    padding: 0 1rem;
    box-sizing: border-box;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hide the first tab button (Speakers) and its content */
.schedule-tabs button.tab-btn:first-child,
#day {
    display: none;
}

/* Schedule day visibility */
.schedule-day {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-day.active {
    display: block;
    opacity: 1;
}

/* Make sure Day 1 is active by default */
#day1 {
    display: block;
    opacity: 1;
}

/* Hide full day names on mobile */
.tab-btn .long-text {
    display: none;
}

/* Show full day names on larger screens */
@media (min-width: 768px) {
    .tab-btn .short-text {
        display: none;
    }
    .tab-btn .long-text {
        display: inline;
    }
}

.tab-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: #000;
    background: rgba(244, 180, 0, 0.1);
}

.tab-btn:hover::before {
    width: 100%;
}

.tab-btn.active {
    background: var(--primary);
    border-color: #000;
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.schedule-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.schedule-day {
    display: none;
    animation: fadeIn 0.5s ease;
}

.schedule-day.active {
    display: block;
}

.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding: 0 0 2.5rem 2rem;
    margin-left: 80px;
    min-height: 100px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-time {
    position: absolute;
    left: -80px;
    top: 5px;
    width: 60px;
    text-align: right;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.4;
}

.timeline-content {
    position: relative;
    padding: 1.5rem;
    background: transparent;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    border-left: 3px solid var(--primary);
    transition: all 0.2s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    background: transparent;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #f9f5f0;
    z-index: 1;
    box-shadow: 0 0 0 2px var(--primary);
    transition: all 0.2s ease;
}

.timeline-details {
    margin-left: 2rem;
}

.timeline-title {
    color: #000000; /* Black for better contrast */
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.timeline-speaker {
    color: #000;
    font-size: 0.9rem;
    margin: 0 0 0.8rem 0;
    font-weight: 500;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.timeline-speaker i {
    margin-right: 0.5rem;
}

.timeline-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.timeline-location,
.timeline-duration {
    display: flex;
    align-items: center;
    color: #000000; /* Black for better contrast */
    font-size: 0.85rem;
    font-weight: 400;
}

.timeline-location i,
.timeline-duration i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .schedule {
        padding: 4rem 1rem;
    }
    
    .schedule h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .schedule-content {
        padding: 1.5rem 0;
    }
    
    .timeline-item {
        margin-left: 80px;
        padding-left: 1.5rem;
    }
    
    .timeline-time {
        left: -80px;
        width: 70px;
        font-size: 0.9rem;
    }
    
    .timeline-dot {
        left: -8px;
        top: 10px;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .schedule h2 {
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .timeline-item {
        margin-left: 60px;
        padding-left: 1rem;
    }
    
    .timeline-time {
        position: absolute;
        left: -60px;
        top: 5px;
        width: 50px;
        text-align: right;
    }
    
    .timeline-dot {
        left: -8px;
        top: 10px;
    }
    
    .timeline-content {
        padding: 1rem 1rem 1.5rem 1rem;
    }
    
    .timeline-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        margin-left: 40px;
        padding-left: 0.5rem;
    }
    
    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
        left: 0;
    }
    
    .timeline-dot {
        left: -8px;
        top: 15px;
    }
    
    .timeline-content {
        padding: 1rem 0.75rem 1.25rem 0.75rem;
    }
}

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

@media (max-width: 768px) {
    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-content {
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Speakers Section */
.speakers {
    padding: 5rem 2rem 8rem; /* Maximized bottom padding */
    background: #000000;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 8rem; /* Maximum margin at the bottom */
}

.speakers::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.95) 25%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.7) 75%,
        rgba(0, 0, 0, 0.5) 90%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
    filter: blur(15px);
    transform: scaleX(1.2);
    opacity: 0.9;
}

.speakers h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.speakers > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
}

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

.speaker-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.speaker-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.speaker-company {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.speaker-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.speaker-social a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.speaker-social a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .sponsors {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .sponsor-scroll-container {
        margin: 2rem 0;
        padding: 0;
        width: 100vw;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .sponsor-logo {
        width: 160px;
        height: 80px;
        margin-right: 1.5rem;
    }
    
    .speakers {
        padding: 3rem 1rem;
    }
    
    .speakers h2 {
        font-size: 2rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .schedule {
        padding: 3rem 1rem;
    }
    
    .schedule h2 {
        font-size: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-day.highlight::before {
        right: -25px;
        font-size: 0.7rem;
        padding: 3px 25px;
    }
}

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

.card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Topics Section */
.topics {
    padding: 5rem 1.5rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.topics h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.topics h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

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

.topic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.topic-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.1);
}

.topic-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.topic-card .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(80%) sepia(39%) saturate(1000%) hue-rotate(1deg) brightness(100%) contrast(105%);
    opacity: 0.8;
}

/* Responsive adjustments */
/* Mobile-specific styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* General mobile fixes */
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Fix for schedule tabs */
    .schedule-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .schedule-tabs::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    
    /* Fix for sponsor logos */
    .sponsor-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }
    
    /* Ensure all sections have proper width */
    section {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    /* Fix for any overflowing content */
    img, svg, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix for navigation */
    .nav-menu {
        padding: 0 15px;
    }
    
    /* Fix for hero section */
    .hero {
        padding: 2rem 1rem;
    }
    
    /* Speakers section with subtle gradient fade */
    .speakers {
        position: relative;
    }
    
    .speakers::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0) 100%);
        z-index: 2;
        pointer-events: none;
    }
    
    .topics {
        padding: 10rem 1rem 5rem; /* Maximum top padding */
        position: relative;
        z-index: 5; /* Ensure it's above any overlapping elements */
        margin-top: 6rem; /* Maximum margin at the top */
    }
    
    .topics h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .topic-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .topic-card {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }
    
    .topic-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Topics Section */
.topics-section {
    padding: 6rem 1rem;
    background: 
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.98) 100%
        ),
        url('images/GDG-Bevy-ChapterBanner.webp') center/cover;
    position: relative;
    overflow: hidden;
    margin-top: -180px;
    padding-top: 230px;
}

/* Make background darker at top and bottom on mobile */
@media (max-width: 768px) {
    .topics-section {
        background: 
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.98) 0%,
                rgba(0, 0, 0, 0.7) 40%,
                rgba(0, 0, 0, 0.7) 60%,
                rgba(0, 0, 0, 0.98) 100%
            ),
            url('images/GDG-Bevy-ChapterBanner.webp') center/cover;
    }
}

.topics-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.topic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.topic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--card-accent, var(--primary));
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.topic-card:hover::after {
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--card-accent, var(--primary));
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.topic-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
    background: rgba(255, 255, 255, 0.05);
}

.topic-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.topic-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--card-accent, var(--primary));
    transition: width 0.3s ease;
}

.topic-card:hover h3::after {
    width: 80px;
}

.topic-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.topic-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--card-accent, var(--primary));
    transition: all 0.3s ease;
}

.topic-card:hover .topic-tag {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .schedule {
        padding: 3rem 0;
    }
    
    .schedule .container {
        padding: 0 1rem;
    }
    
    .section-subtitle {
        margin: 1rem auto 2.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .schedule-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .schedule-tabs::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 2px;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .topics-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .topic-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-card {
        padding: 1.8rem 1.5rem;
    }
}

/* Ensure smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.sponsors {
    padding: 4rem 2rem;
    background: #000000;
    color: var(--text);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sponsors::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 300px;
    background: linear-gradient(to top, 
        rgba(244, 180, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.sponsors h2 {
    color: #F4B400;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sponsors p {
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.sponsor-scroll-container {
    overflow: hidden;
    margin: 2rem -2rem;
    padding: 0 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.sponsor-scroll {
    display: flex;
    animation: scroll 15s linear infinite;
    width: max-content;
    min-width: 100%;
}

.sponsor-logo {
    flex: 0 0 auto;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    box-sizing: border-box;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.sponsor-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: var(--primary);
    border: 3px solid rgba(244, 180, 0, 0.5);
    color: var(--background);
    gap: 6px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    margin: 20px auto;
    font-family: var(--font-body);
    max-width: fit-content;
}

.sponsor-text {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sponsor-svg {
    height: 18px;
    width: auto;
    display: flex;
    align-items: center;
}

.sponsor-svg svg {
    width: 24px;
    height: 16px;
}

.sponsor-button:hover {
    border-color: var(--primary);
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
}

.sponsor-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(244, 180, 0, 0.3);
}

.sponsor-button:hover .sponsor-svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(0.75, 1.25, 1);
    }
    40% {
        transform: scale3d(1.25, 0.75, 1);
    }
    50% {
        transform: scale3d(0.85, 1.15, 1);
    }
    65% {
        transform: scale3d(1.05, 0.95, 1);
    }
    75% {
        transform: scale3d(0.95, 1.05, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.action-button svg {
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.action-button:hover {
    transform: translateX(4px);
}

.action-button:hover svg {
    transform: rotate(-45deg) translateX(4px);
}

.partners {
    padding: 4rem 2rem;
    background-image: url('./images/partner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.partners-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.partners h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.partners p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-logo {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F4B400;
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.action-button:hover {
    transform: translateX(4px);
}

.topics {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/GDG-Backround-ChapterBanner.jpeg') center/cover;
    color: var(--text);
}

.topics h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.topic-card {
    padding: 2rem;
    font-family: var(--font-special);
    font-size: 1rem;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.topic-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.topic-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.topic-card .icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.topic-card:hover .icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
}

.core-team {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    background-size: 20px 20px;
    color: var(--text);
    color: black;
}

.core-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-banner {
    width: 30%;
    max-width: 800px;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 10px;
}

.team-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
    opacity: 0.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.team-member p {
    font-size: 1rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .logo {
        width: 160px;
    }

    h1 {
        font-size: 3rem;
    }

    .event-details {
        grid-template-columns: 1fr;
    }
    
    .team-banner {
        width: 80%;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.75rem;
    }
    
.countdown-item span:first-child {
font-size: 2rem;
}
}

/* CSS styles for the footer */
.footer {
background-color: #000;
color: #fff;
padding: 3rem 1rem;
}

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

.about-section {
    text-align: center;
    margin-bottom: 3rem;
}

.about-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: var(--font-body);
}

.about-button:hover {
    background-color: #333;
}

.about-text {
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.6;
    font-family: var(--font-body);
}

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

.footer-column h3 {
    color: #ccc;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    font-family: var(--font-body);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
    transform: translateY(-2px);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.logo-image {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.event-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    text-align: center;
    margin: 2rem 0;
}

/* Event Gallery */
.event-gallery {
    padding: 60px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}

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

/* Coming Soon Gallery Styles */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.coming-soon-content {
    max-width: 600px;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.coming-soon-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.coming-soon-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.countdown {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

#gallery-countdown-timer {
    color: var(--primary);
    margin-left: 0.5rem;
}

.event-gallery h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #fff;
}

.event-gallery .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.gallery-actions button {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.gallery-actions button:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px !important;
    height: 60px !important;
    background: rgba(244, 180, 0, 0.9) !important;
    z-index: 1;
}

.play-btn:hover {
    background: #fff !important;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
}

/* Navigation Buttons */
.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

.download-lightbox-btn {
    position: absolute;
    top: 15px;
    right: 65px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    transition: all 0.3s ease;
}

.download-lightbox-btn:hover {
    background: var(--primary);
    color: #000;
}

.media-container {
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image,
#lightbox-video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}

#lightbox-video {
    width: 100%;
    height: 100%;
}

.lightbox-caption {
    padding: 15px;
    background: #111;
    color: white;
}

.lightbox-caption h3 {
    margin: 0 0 5px 0;
    color: var(--primary);
}

.lightbox-caption p {
    margin: 0;
    color: #ccc;
}

.gallery-overlay h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: var(--primary);
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .event-gallery {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 1rem;
    }
}