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

:root {
    --primary-red: #d23d2d;
    --secondary-red: #d23d2d;
    --accent-gold: #f5c065;
    --light-gold: #f5c065;
    --dark-red: #d23d2d;
    --white: #FFFFFF;
    --light-gray: #f8eecb;
    --dark-gray: #31603d;
    --text-dark: #31603d;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Prevent images, videos, and canvas from causing overflow issues */
img, video, canvas {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure smooth scrolling and prevent scroll trapping */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Prevent scroll trapping in containers */
section, div, article, aside, main {
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

/* Universal rule to prevent scroll indicators in developer tools */
.hero, .hero-container, .about, .speakers, .speakers-grid, 
.program, .program-content, .registration, .registration-content,
.footer, .footer-content, .container, .about-text, .stats,
.speaker-card, .stat, .program-item, .registration-form,
.registration-info, .form-group, .nav-container {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    scroll-behavior: auto !important;
    overscroll-behavior: none !important;
}

/* Additional rule for any missed containers */
div:not(.nav-menu):not(.hamburger), section, article, main {
    overflow-x: hidden;
    overscroll-behavior: none;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Universal anti-horizontal-scroll rules */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent any element from causing horizontal scroll */
body * {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Final safety net against horizontal overflow */
.navbar, .hero, .about, .speakers, .program, .registration, .footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    width: 100%;
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Ensure all containers stay within viewport - no horizontal scroll */
.container, 
.nav-container, 
.hero-container, 
.registration-content,
.footer-content {
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-left: clamp(1rem, 2vw, 2rem);
    padding-right: clamp(1rem, 2vw, 2rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: min(1200px, 100vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

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

.logo-image {
    height: 55px;
    width: auto;
}

.nav-logo h2 {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.hero-container {
    max-width: min(1200px, 100vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.event-details {
    margin-bottom: 3rem;
}

.event-date {
    font-size: 1.5rem;
    color: var(--light-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    color: var(--dark-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-graphics {
    position: relative;
    height: 500px;
}

.sport-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none; /* do not capture touch/scroll */
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    opacity: 0.7;
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--light-gold);
    opacity: 0.5;
    top: 60%;
    left: 70%;
    animation-delay: 3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

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

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Container */
.container {
    max-width: min(1200px, 100vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-red);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light-gray);
    overflow: hidden;
    width: 100%;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 4rem;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Speakers Section */
.speakers {
    padding: 8rem 0;
    background: var(--white);
    overflow-x: hidden;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.speaker-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.speaker-image {
    margin-bottom: 1.5rem;
}

.speaker-image img {
    width: min(150px, 40vw);
    height: min(150px, 40vw);
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--primary-red);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.placeholder-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto;
}

.speaker-card h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.speaker-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Program Section */
.program {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    overflow: hidden;
    width: 100%;
}

.program .section-title {
    color: var(--accent-gold);
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    min-width: min(150px, 40vw);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.activity h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.activity p {
    color: rgba(255, 255, 255, 0.8);
}

/* Registration Section */
.registration {
    padding: 8rem 0;
    background: var(--light-gray);
    overflow: hidden;
    width: 100%;
}

.registration-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.registration-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.4;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 67, 63, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 67, 63, 0.4);
}

.registration-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    height: fit-content;
}

.registration-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.registration-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.registration-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.registration-info li:before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-info h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

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

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 67, 63, 0.3);
}

/* Success Message */
.success-message {
    background: linear-gradient(45deg, #27AE60, #2ECC71);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent scroll trapping on mobile */
    body {
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Ensure images, videos, and canvas behave properly on tablets/mobile */
    img, video, canvas {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    /* Fix section layout without breaking overflow containment */
    section, .hero, .about, .speakers, .program, .registration, .partners {
        overflow-x: hidden;
        width: 100%;
        touch-action: manipulation;
    }
    
    .container, .hero-container, .about-content, .speakers-grid, 
    .program-content, .registration-content, .partners-grid {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
        width: 100vw;
        max-width: 100vw;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.2s ease;
        transform: translateX(-100vw);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        will-change: transform;
        pointer-events: none;
        opacity: 0;
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: auto;
        opacity: 1;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
        max-width: 100vw;
        overflow-x: hidden;
        padding-left: clamp(1rem, 2vw, 2rem);
        padding-right: clamp(1rem, 2vw, 2rem);
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .program-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .time {
        min-width: auto;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
    }
    
    .registration-form {
        padding: 2rem;
        margin: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Fix the checkbox group styling for mobile */
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .checkbox-group input[type="checkbox"] {
        transform: scale(1.1);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-graphics {
        height: 300px;
    }
    
    .sport-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Proper mobile layout without aggressive overflow rules */
    body, html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        height: auto !important;
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure images, videos, and canvas don't cause overflow issues */
    img, video, canvas {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    /* Fix container overflow issues without breaking layout */
    .hero, .about, .speakers, .program, .registration, .partners {
        overflow-x: hidden;
        width: 100%;
        /* Ensure containers don't trap scrolling */
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent any container from trapping scroll on mobile */
    .container, .hero-container, .registration-content, .speakers-grid,
    .program-content, .about-content, .footer-content {
        overscroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        overflow: hidden !important;
    }
    
    /* Force disable scroll on all grid and flex containers */
    .speakers-grid, .stats, .footer-content, .registration-content,
    .hero-container, .about-text, .program-content {
        overflow: hidden !important;
        max-height: none !important;
        height: auto !important;
    }
    
    /* Disable scroll on all cards and interactive elements */
    .speaker-card, .stat, .program-item, .registration-form,
    .registration-info, .partner-card {
        overflow: hidden !important;
    }
    
    .nav-container,
    .container {
        padding: 0 1rem;
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Additional anti-horizontal-scroll rules for mobile */
    .speakers-grid, .stats, .footer-content, .registration-content,
    .hero-container, .about-text, .program-content, .nav-container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    .logo-image {
        height: 38px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        padding-top: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .registration-info {
        padding: 1.5rem;
    }
    
    /* Additional mobile fixes to prevent horizontal scrolling */
    .hero-container,
    .container,
    .registration-content,
    .registration-form,
    .registration-info,
    .speakers,
    .speakers-grid,
    .stats,
    .footer-content,
    .nav-container,
    .about-text,
    .program-content {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: clamp(0.5rem, 1vw, 1rem) !important;
        padding-right: clamp(0.5rem, 1vw, 1rem) !important;
    }
} 