.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #161616 0%, #424242 25%, #161616 50%, #424242 75%, #444546 100%);
    overflow: hidden;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(40%, 60%, 70%);
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    /* margin: 0 auto; */
    padding: clamp(1rem, 4vw, 2rem);
    align-items: center;
    position: relative;
    z-index: 2;
    gap: clamp(1rem, 4vw, 2rem);
}

.text-content {
    flex: 1;
    max-width: min(600px, 100%);
    color: white;
    padding-right: clamp(0rem, 2vw, 2rem);
}

.broadcast-tag {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: normal;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    font-family: Arial, sans-serif;
}

.main-heading {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(-1px, -0.3vw, -2px);
}

.location {
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: clamp(-0.5px, -0.2vw, -1px);
}

.live-free-text {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
    text-transform: uppercase;
}

.live-text {
    color: #ff3366;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.from-anywhere {
    font-size: clamp(1.3rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-transform: uppercase;
}

.description {
    font-family: Arial, sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: normal;
    opacity: 0.95;
    max-width: min(500px, 100%);
}

.watch-button {
    display: inline-flex;
    align-items: center;
    background: #ff3366;
    color: white;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
    border-radius: clamp(0px, 1vw, 4px);
}

.watch-button:hover {
    background: #e62958;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 51, 102, 0.6);
}

.button-arrow {
    margin-left: clamp(0.5rem, 1.5vw, 0.8rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: transform 0.3s ease;
}

.watch-button:hover .button-arrow {
    transform: translateX(5px);
}

.visual-content {
    flex: 1;
    position: relative;
    height: clamp(400px, 100vh, 100vh);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    /* Allow flex shrinking */
}

.skater-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.skater-image::before {
    content: '';
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: clamp(8px, 2vw, 15px);
    pointer-events: none;
    z-index: 2;
}

.skater-image::after {
    content: '';
    position: absolute;
    bottom: clamp(10px, 3vw, 20px);
    right: clamp(10px, 3vw, 20px);
    font-size: clamp(1.2rem, 4vw, 2rem);
    opacity: 0.8;
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
}

.skater-image {
    width: 100%;
    height: 100%;
    border-radius: clamp(8px, 2vw, 15px);
    animation: slowHeartbeat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
@keyframes slowHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
.ramp {
    position: absolute;
    bottom: clamp(20px, 8vw, 50px);
    right: clamp(10px, 4vw, 20px);
    width: clamp(100px, 20vw, 200px);
    height: clamp(50px, 10vw, 100px);
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
    border-radius: 0 0 clamp(10px, 3vw, 20px) 0;
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4);
}

.sonic-logo {
    position: absolute;
    top: 50%;
    right: clamp(5%, 10%, 10%);
    transform: translateY(-50%);
    background: linear-gradient(45deg, #0066cc, #4da6ff);
    color: white;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    border-radius: clamp(10px, 3vw, 20px);
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.05);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatAround 15s linear infinite;
}

.floating-element:nth-child(1) {
    width: clamp(10px, 3vw, 20px);
    height: clamp(10px, 3vw, 20px);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: clamp(8px, 2.5vw, 15px);
    height: clamp(8px, 2.5vw, 15px);
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: clamp(12px, 4vw, 25px);
    height: clamp(12px, 4vw, 25px);
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatAround {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.schedule-banner {
    position: absolute;
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: clamp(5px, 2vw, 10px);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    backdrop-filter: blur(10px);
    animation: slideIn 1s ease-out;
    max-width: clamp(200px, 40vw, 300px);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Text animation setup */
.text-content>* {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.text-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.text-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.text-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.text-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.text-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

.text-content>*:nth-child(6) {
    animation-delay: 0.6s;
}

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

/* === RESPONSIVE BREAKPOINTS === */

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-container::before {
        width: 50%;
        clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 20% 100%);
    }

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

    .text-content {
        padding-right: 0;
        margin-bottom: 1rem;
        order: 2;
    }

    .visual-content {
        height: 40vh;
        order: 1;
    }

    .skater-container {
        height: 300px;
    }

    .schedule-banner {
        position: relative;
        top: auto;
        right: auto;
        margin: 0.5rem auto;
        text-align: center;
        order: 3;
    }

    .sonic-logo {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 0.5rem auto;
        display: block;
        text-align: center;
    }

    .ramp {
        display: none;
        /* Hide on very small screens */
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 1.5rem;
        order: 2;
    }

    .visual-content {
        height: 45vh;
        order: 1;
    }

    .schedule-banner {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        text-align: center;
        order: 3;
    }

    .sonic-logo {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 1rem auto;
        display: block;
        text-align: center;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 2rem;
        order: 2;
    }

    .visual-content {
        height: 50vh;
        order: 1;
    }

    .schedule-banner {
        top: 1rem;
        right: 1rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .content-wrapper {
        flex-direction: row;
        text-align: left;
    }

    .text-content {
        order: 1;
    }

    .visual-content {
        order: 2;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .content-wrapper {
        flex-direction: row;
        text-align: left;
    }

    .text-content {
        order: 1;
    }

    .visual-content {
        order: 2;
    }

    /* Enhance animations on larger screens */
    .skater-image:hover {
        transform: scale(1.02);
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-container {
        min-height: 100vh;
    }

    .content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .visual-content {
        height: 80vh;
    }

    .main-heading {
        font-size: clamp(1.5rem, 6vw, 4rem);
    }

    .location {
        font-size: clamp(1.3rem, 5vw, 3rem);
    }
}

/* High DPI / Retina Display optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .skater-image {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    }

    .watch-button {
        box-shadow: 0 4px 20px rgba(255, 51, 102, 0.5);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .skater-image,
    .floating-element,
    .sonic-logo,
    .skater-image::after {
        animation: none;
    }

    .text-content>* {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .schedule-banner {
        animation: none;
    }
}

/* Focus indicators for accessibility */
@media (prefers-reduced-motion: no-preference) {

    .watch-button:focus,
    .skater-image:focus {
        outline: 2px solid #ff3366;
        outline-offset: 4px;
    }
}
.membership-banner{
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 900;
        line-height: 0.9;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    /* padding: 0 30px; */
    display: flex;
    /* width: 50%; */
    justify-content: center;
    align-items: center;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1000px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.nav-left-scrollable {
    flex: 1;
    display: flex;
    justify-content: space-around;
    /* evenly spread items */
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: space-between;
    /* force all to fit */
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    /* allow wrapping on very small screens */
}

.nav-item {
    flex: 1;
    /* each item shares equal width */
    text-align: center;
}

.nav-link {
    display: block;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.nav-fixed-right {
    margin-left: 6px;
    flex-shrink: 0;
}

.nav-fixed-right .btn {
    font-size: 12px !important;
    padding: 4px 8px !important;
    border-radius: 6px;
}

.portal-link {
    background-color: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}