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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Remove any default spacing between sections */
section {
    margin: 0;
    border: none;
    outline: none;
}

/* Fix anchor scrolling - prevent sections from hiding under fixed navbar */
section[id] {
    scroll-margin-top: 120px;
}

/* Adjust for mobile navbar which is taller */
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 140px;
    }
}

/* Opening Animation Overlay - Optimized */
.opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
    pointer-events: none;
}

.logo-container-anim {
    position: relative;
    width: 300px;
    height: 300px;
}

.logo-simmons,
.logo-texas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
    height: auto;
    backface-visibility: hidden;
}

.logo-simmons {
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0s forwards, flipOut 0.6s cubic-bezier(0.45, 0, 0.55, 1) 1.2s forwards;
}

.logo-texas {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotateY(180deg);
    animation: flipIn 0.6s cubic-bezier(0.45, 0, 0.55, 1) 1.2s forwards, simpleFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale3d(0.7, 0.7, 1);
    }
    100% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
    }
}

@keyframes flipOut {
    0% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) rotateY(0deg);
    }
    100% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) rotateY(-180deg);
    }
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) rotateY(180deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) rotateY(0deg);
    }
}

@keyframes simpleFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0 2rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.nav-buttons {
    display: flex;
    width: 420px;
    padding: 10px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-left: calc(50% - 784.5px);
}

.nav-btn {
    background: rgba(228, 112, 11, 0.70);
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 15.811px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.158px;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 22.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6.081px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: rgba(228, 112, 11, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo-container {
    position: fixed;
    right: 26px;
    top: 9px;
    z-index: 101;
}

.logo {
    width: 171px;
    height: 191px;
    flex-shrink: 0;
    aspect-ratio: 171/191;
    display: block;
}

/* Hero Image Background */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Photo-Assets/Colin_Simmons_Georgia_DSC02340.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Subtle overlay for opening page */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    height: 100%;
}

/* Born to Win */
.main-headline {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 30px));
    bottom: 95px;
    width: 1509px;
    height: 295px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 270px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -10.8px;
}

/* Introducing Collin Simmons */
.sub-headline {
    position: absolute;
    left: 95px;
    bottom: 55px;
    width: 865px;
    height: 53px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -1.6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-nav {
        padding: 1.5rem 2rem;
    }

    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.2rem;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-btn {
        padding: 0.79rem 0.53rem;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .logo {
        width: 120px;
        height: 134px;
    }
}

@media (max-width: 480px) {
    .nav-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-btn {
        flex: 0 0 auto;
        min-width: auto;
    }
}

/* Description Section */
.description-section {
    width: 100%;
    background: #0E0E0E;
    padding: 72px 0 96px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    border: none;
    outline: none;
}

.description-content {
    max-width: 1134px;
    width: 100%;
    margin-left: calc(50% - 784.5px);
}

.description-text {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2.56px;
    margin: 0;
}

.highlight-orange {
    color: #FA923A;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2.56px;
}

/* Logo Grid Section */
.logo-grid-section {
    width: 100%;
    background: #0E0E0E;
    padding: 0 0 80px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 0;
    border: none;
    outline: none;
}

.logo-grid {
    width: 100%;
    height: 109px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 121px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.partner-logo {
    max-height: 109px;
    height: auto;
    width: auto;
    object-fit: cover;
    background: lightgray -19.661px -1.463px / 136.546% 102.41% no-repeat;
}

.logo-rounded {
    border-radius: 53.5px;
}

.logo-no-bg {
    background: none;
    object-fit: contain;
}

/* Partners Section */
.partners-section {
    width: 100%;
    background: url('Photo-Assets/Colin_Simmons_Content_Day_DSC01417.jpg') lightgray 50% / cover no-repeat;
    padding: 80px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    contain: layout style;
}

.partners-content {
    width: 1134px;
    margin-left: calc(50% - 784.5px);
}

.partners-title {
    color: rgba(250, 146, 58, 0.85);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -1.6px;
    margin: 0 0 40px 0;
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-title.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.2s;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-name {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2.56px;
    margin: 0;
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-name.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.partner-name.animate:nth-child(1) { transition-delay: 0.4s; }
.partner-name.animate:nth-child(2) { transition-delay: 0.5s; }
.partner-name.animate:nth-child(3) { transition-delay: 0.6s; }
.partner-name.animate:nth-child(4) { transition-delay: 0.7s; }
.partner-name.animate:nth-child(5) { transition-delay: 0.8s; }
.partner-name.animate:nth-child(6) { transition-delay: 0.9s; }
.partner-name.animate:nth-child(7) { transition-delay: 1s; }
.partner-name.animate:nth-child(8) { transition-delay: 1.1s; }
.partner-name.animate:nth-child(9) { transition-delay: 1.2s; }
.partner-name.animate:nth-child(10) { transition-delay: 1.3s; }


/* Stats Section */
.stats-section {
    width: 100%;
    min-height: 100vh;
    background: url('Photo-Assets/Colin_Simmons_DSC02726.JPG') lightgray 50% / cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.stats-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 700px;
}

.stat-card {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    position: absolute;
    border-radius: 140px;
    background: rgba(181, 187, 191, 0.60);
    backdrop-filter: blur(13.923px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card-left {
    left: 121px;
    top: 104px;
}

.stat-card-right {
    right: 99.379px;
    top: 104px;
}

.stat-number {
    color: #FFF;
    text-align: center;
    font-family: "Dot Matrix", monospace;
    font-size: 235.833px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    margin-bottom: 20px;
}

.stat-label {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    text-align: center;
}

.stats-disclaimer {
    width: 878px;
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -1.28px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

/* Achievements Section */
.achievements-section {
    width: 100%;
    min-height: auto;
    flex-shrink: 0;
    background: linear-gradient(180deg, #BD6B25 0%, #B95C3B 100%);
    padding: 80px 0 120px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    contain: layout style;
}

.achievements-content {
    width: 1134px;
    margin-left: calc(50% - 784.5px);
}

.achievements-title {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2.56px;
    margin: 0 0 40px 0;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: grid;
    grid-template-columns: 220px auto 1fr;
    gap: 20px;
    align-items: center;
    width: 1283.775px;
    max-width: 200px;
    height: 56.198px;
    flex-shrink: 0;
    border-radius: 200px;
    border: 2.634px solid rgba(255, 255, 255, 0.65);
    padding: 0 50px;
    overflow: hidden;
    transition: max-width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.achievement-item.animate {
    max-width: 1283.775px;
}

.achievement-item.animate:nth-child(1) { transition-delay: 0.3s; }
.achievement-item.animate:nth-child(2) { transition-delay: 0.6s; }
.achievement-item.animate:nth-child(3) { transition-delay: 0.9s; }
.achievement-item.animate:nth-child(4) { transition-delay: 1.2s; }
.achievement-item.animate:nth-child(5) { transition-delay: 1.5s; }
.achievement-item.animate:nth-child(6) { transition-delay: 1.8s; }
.achievement-item.animate:nth-child(7) { transition-delay: 2.1s; }

.achievement-date {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 35.124px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.702px;
    opacity: 0;
    transition: opacity 1s ease-out 0.6s;
}

.achievement-item.animate .achievement-date {
    opacity: 1;
}

.achievement-separator {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 35.124px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.702px;
    opacity: 0;
    transition: opacity 1s ease-out 0.8s;
}

.achievement-item.animate .achievement-separator {
    opacity: 1;
}

.achievement-description {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 35.124px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.702px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1s ease-out 1s;
}

.achievement-item.animate .achievement-description {
    opacity: 1;
}

/* Peach Bowl Section */
.peach-bowl-section {
    display: flex;
    width: 100%;
    height: 1008px;
    padding: 446px 100px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: url('Photo-Assets/Colin_Simmons_Arkansas_DSC04697.JPG') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.peach-bowl-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.peach-bowl-text {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2px;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Merchandise Section */
.merchandise-section {
    width: 100%;
    background: #0E0E0E;
    padding: 80px 0 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.merchandise-title {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -2px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.orange-streak {
    position: absolute;
    width: 100%;
    height: 17px;
    left: 0;
    right: 0;
    background-image: url('Photo-Assets/Orange streak.png');
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
    transform: translate3d(-100%, 0, 0);
    transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.orange-streak.animate {
    transform: translate3d(0, 0, 0);
}

.orange-streak-top {
    top: 360px;
    transition-delay: 0.2s;
}

.orange-streak-bottom {
    top: 510px;
    transition-delay: 0.5s;
}

.merchandise-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hide mobile toggle arrows, labels, and container on desktop */
.toggle-arrow {
    display: none;
}

.merchandise-toggle-container {
    display: contents;
}

.item-label {
    display: none;
}

.merchandise-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translate3d(0, 20px, 0) scale3d(0.95, 0.95, 1);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.merchandise-item.animate {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.merchandise-item:nth-child(1) {
    transition-delay: 0.3s;
}

.merchandise-item:nth-child(2) {
    transition-delay: 0.4s;
}

.merchandise-item:nth-child(3) {
    transition-delay: 0.5s;
}

.merchandise-image {
    flex-shrink: 0;
    border-radius: 85px;
    background: lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
}

.merchandise-tshirt {
    width: 410.814px;
    height: 410.814px;
    aspect-ratio: 410.81/410.81;
}

.merchandise-hoodie {
    width: 410.814px;
    height: 410.814px;
    aspect-ratio: 410.81/410.81;
}

.merchandise-longsleeve {
    width: 411px;
    height: 411px;
    aspect-ratio: 1/1;
}

.price-tag {
    width: 91px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 160.118px;
    background: #BC682B;
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Born to Win Section */
.born-to-win-section {
    width: 100%;
    height: 100vh;
    background: url('Photo-Assets/Colin_Simmons_Content_Day_DSC01461-2.jpg') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-bottom: 20px;
}

.born-to-win-text {
    color: rgba(255, 255, 255, 0.90);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 270px;
    font-style: normal;
    font-weight: 700;
    line-height: 109.518%;
    letter-spacing: -10.8px;
    margin: 0;
    padding: 40px 60px;
    text-align: center;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.social-link {
    color: #FFF;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* Tablet Styles (768px - 1024px) */
/* Larger tablet/small desktop (up to 1200px) */
@media (max-width: 1200px) {
    .description-content,
    .partners-content,
    .achievements-content {
        max-width: 90%;
    }
    
    .merchandise-grid {
        gap: 60px;
    }
    
    .stats-container {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    /* Overall container */
    body {
        overflow-x: hidden;
    }
    
    /* Navigation adjustments */
    .nav-buttons {
        margin-left: 2rem;
        width: auto;
    }
    
    /* Hero section */
    .hero-container {
        min-height: 100vh;
    }
    
    /* Hero headlines */
    .main-headline {
        font-size: 150px;
        width: auto;
        left: 2rem;
        right: 2rem;
        transform: none;
        letter-spacing: -6px;
    }
    
    .sub-headline {
        font-size: 32px;
        left: 2rem;
        width: auto;
        letter-spacing: -1.2px;
    }
    
    /* Content sections */
    .description-content,
    .partners-content,
    .achievements-content {
        margin-left: 2rem;
        margin-right: 2rem;
        width: calc(100% - 4rem);
        max-width: 900px;
    }
    
    .description-section,
    .partners-section,
    .achievements-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .description-text,
    .highlight-orange {
        font-size: 48px;
        letter-spacing: -1.92px;
    }
    
    /* Logo grid */
    .logo-grid-section {
        padding: 0 2rem 60px 2rem;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .partner-name {
        font-size: 48px;
        letter-spacing: -1.92px;
    }
    
    /* Merchandise section */
    .merchandise-title {
        font-size: 80px;
    }
    
    .merchandise-grid {
        gap: 40px;
        padding: 0 2rem;
    }
    
    .merchandise-item {
        max-width: 280px;
    }
    
    .merchandise-image {
        max-width: 280px;
        height: 280px;
    }
    
    .price-tag {
        padding: 10px 24px;
        font-size: 28px;
    }
    
    .orange-streak {
        height: 120px;
    }
    
    .orange-streak-top {
        top: 200px;
    }
    
    .orange-streak-bottom {
        top: 380px;
    }
    
    /* Stats section */
    .stats-container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .stat-card {
        width: 350px;
        height: 350px;
    }
    
    .stat-card-left {
        left: 50px;
    }
    
    .stat-card-right {
        right: 50px;
    }
    
    .stat-number {
        font-size: 180px;
    }
    
    .stats-disclaimer {
        width: auto;
        padding: 0 2rem;
        font-size: 48px;
    }
    
    /* Achievements */
    .achievements-title {
        font-size: 48px;
        letter-spacing: -1.92px;
    }
    
    .achievement-item {
        width: 100%;
        max-width: 180px;
        padding: 0 30px;
    }
    
    .achievement-item.animate {
        max-width: 100%;
    }
    
    .achievement-date,
    .achievement-separator,
    .achievement-description {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    
    /* Peach Bowl section */
    .peach-bowl-section {
        padding: 80px 2rem;
    }
    
    .peach-bowl-text {
        font-size: 70px;
        padding: 0 2rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* Born to Win section */
    .born-to-win-section {
        min-height: 80vh;
    }
    
    .born-to-win-text {
        font-size: 180px;
        letter-spacing: -7.2px;
        padding: 40px 2rem;
    }
    
    /* Footer */
    .footer-content {
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Opening animation logo size */
    .logo-container-anim {
        width: 200px;
        height: 200px;
    }
    
    /* Navigation */
    .top-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .nav-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.2rem;
    }
    
    .logo-container {
        position: fixed;
        right: 10px;
        top: 10px;
    }
    
    .logo {
        width: 100px;
        height: 112px;
    }
    
    /* Hero section */
    .main-headline {
        font-size: 80px;
        bottom: 120px;
        left: 1rem;
        right: 1rem;
        letter-spacing: -3.2px;
        height: auto;
    }
    
    .sub-headline {
        font-size: 24px;
        left: 1rem;
        bottom: 80px;
        width: auto;
        right: 1rem;
        height: auto;
        letter-spacing: -0.96px;
    }
    
    /* Description section */
    .description-section {
        padding: 60px 0 0 0;
    }
    
    .description-content {
        margin: 0 1.5rem;
        width: calc(100% - 3rem);
    }
    
    .description-text,
    .highlight-orange {
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: 120%;
    }
    
    /* Logo grid */
    .logo-grid-section {
        padding: 0 0 20px 0;
    }
    
    .logo-track {
        gap: 40px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    /* Partners section */
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-content {
        margin: 0 1.5rem;
        width: calc(100% - 3rem);
    }
    
    .partners-title {
        font-size: 28px;
        letter-spacing: -1.12px;
        margin-bottom: 30px;
    }
    
    .partner-name {
        font-size: 32px;
        letter-spacing: -1.28px;
    }
    
    /* Stats section */
    .stats-section {
        padding: 60px 0;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stats-container {
        width: 100%;
        height: auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .stat-card {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        width: 280px;
        height: 280px;
        border-radius: 100px;
    }
    
    .stat-number {
        font-size: 140px;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .stats-disclaimer {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 28px;
        letter-spacing: -0.56px;
        width: auto;
        max-width: 90%;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    /* Achievements section */
    .achievements-section {
        padding: 60px 0 80px 0;
    }
    
    .achievements-content {
        margin: 0 1.5rem;
        width: calc(100% - 3rem);
    }
    
    .achievements-title {
        font-size: 32px;
        letter-spacing: -1.28px;
        margin-bottom: 30px;
    }
    
    .achievement-item {
        display: grid;
        grid-template-columns: auto auto 1fr;
        gap: 8px;
        align-items: center;
        width: 100%;
        max-width: 60px;
        height: 50px;
        padding: 0 25px;
        border-radius: 50px;
        overflow: hidden;
        transition: max-width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .achievement-item.animate {
        max-width: 100%;
    }
    
    .achievement-date,
    .achievement-separator,
    .achievement-description {
        font-size: 12px;
        letter-spacing: -0.24px;
        white-space: nowrap;
    }
    
    .achievement-separator {
        display: inline;
    }
    
    /* Peach Bowl section */
    .peach-bowl-section {
        height: 60vh;
        padding: 80px 20px;
    }
    
    .peach-bowl-text {
        font-size: 40px;
        letter-spacing: -1.6px;
        line-height: 120%;
    }
    
    /* Merchandise section */
    .merchandise-section {
        padding: 60px 0 80px 0;
    }
    
    .merchandise-title {
        font-size: 48px;
        letter-spacing: -1.92px;
        margin: 0 auto 20px auto;
        text-align: center;
        width: 100%;
        padding: 0 1.5rem;
    }
    
    .orange-streak-top {
        top: 240px;
    }
    
    .orange-streak-bottom {
        top: 360px;
    }
    
    .merchandise-toggle-container {
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 60px;
    }
    
    .toggle-arrow {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(250, 146, 58, 0.9);
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 36px;
        line-height: 1;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        padding: 0;
    }
    
    .toggle-arrow:hover {
        background: rgba(250, 146, 58, 1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .toggle-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .toggle-arrow-left {
        left: 5px;
    }
    
    .toggle-arrow-right {
        right: 5px;
    }
    
    .merchandise-grid {
        position: relative;
        width: 100%;
        max-width: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .merchandise-item {
        display: none !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 350px;
    }
    
    .merchandise-item.active {
        display: flex !important;
    }
    
    .merchandise-image {
        width: 100%;
        max-width: 350px;
        height: 350px;
        border-radius: 50px;
    }
    
    .merchandise-tshirt,
    .merchandise-hoodie,
    .merchandise-longsleeve {
        width: 100%;
        max-width: 350px;
        height: 350px;
        aspect-ratio: 1/1;
    }
    
    .item-label {
        display: block !important;
        color: #FFF;
        font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        margin-top: 10px;
    }
    
    .price-tag {
        width: 80px;
        height: 44px;
        font-size: 20px;
    }
    
    /* Born to Win section */
    .born-to-win-section {
        height: 60vh;
        padding-bottom: 40px;
    }
    
    .born-to-win-text {
        font-size: 80px;
        letter-spacing: -3.2px;
        padding: 20px 1.5rem;
        line-height: 100%;
    }
    
    /* Footer */
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-disclaimer {
        font-size: 11px;
        line-height: 1.8;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    /* Hero headlines - even smaller */
    .main-headline {
        font-size: 56px;
        bottom: 100px;
        letter-spacing: -2.24px;
    }
    
    .sub-headline {
        font-size: 20px;
        bottom: 65px;
        letter-spacing: -0.8px;
    }
    
    /* Description */
    .description-text,
    .highlight-orange {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    /* Partners */
    .partner-name {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    /* Stats */
    .stat-card {
        width: 240px;
        height: 240px;
        border-radius: 80px;
    }
    
    .stat-number {
        font-size: 100px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .stats-disclaimer {
        font-size: 22px;
        letter-spacing: -0.44px;
    }
    
    /* Achievements */
    .achievements-title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    .achievement-item {
        height: 44px;
        padding: 0 20px;
        gap: 6px;
    }
    
    .achievement-date,
    .achievement-separator,
    .achievement-description {
        font-size: 10px;
        letter-spacing: -0.2px;
    }
    
    /* Peach Bowl */
    .peach-bowl-text {
        font-size: 32px;
        letter-spacing: -1.28px;
    }
    
    /* Merchandise */
    .merchandise-title {
        font-size: 36px;
        letter-spacing: -1.44px;
    }
    
    .merchandise-item {
        width: 100%;
        max-width: 300px;
    }
    
    .merchandise-image {
        max-width: 300px;
        height: 300px;
        border-radius: 40px;
    }
    
    .merchandise-tshirt,
    .merchandise-hoodie,
    .merchandise-longsleeve {
        max-width: 300px;
        height: 300px;
    }
    
    .orange-streak-top {
        top: 200px;
    }
    
    .orange-streak-bottom {
        top: 310px;
    }
    
    /* Born to Win */
    .born-to-win-text {
        font-size: 56px;
        letter-spacing: -2.24px;
    }
    
    /* Logo positioning */
    .logo-container {
        bottom: 40px;
    }
    
    /* Navigation buttons - stack better */
    .nav-btn {
        font-size: 15px;
        padding: 0.76rem 0.42rem;
    }
}

