.imageBackground {
    background-image: url('/assets/images/stage.webp');
    background-size: cover;
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%; /* Full width */
}

.topSection {
    display: flex;
    padding: 6rem 3rem 1rem 3rem;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    gap: 3rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.topSection .info-block {
    text-align: center;
}

.topSection #mainEscapeImage {
    height: 15rem;
}

.topSection .location {
    font-size: x-large;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
}

.topSection .location i {
    margin-right: 0.5rem;
}

.topSection .message-container {
    display: flex;
    padding: 3rem;
    justify-content: space-evenly;
    gap: 5rem;
    flex-wrap: wrap;
}

.topSection .speaker-call {
    background-color: #37393b;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    border-radius: 1rem;
    border: 0.3rem solid #8f8f8f;
    max-width: 31.25rem;
    background-image: linear-gradient(45deg,
    rgb(73, 74, 74, 0.7),
    rgb(131, 139, 139, 0.7) 50%,
    rgb(73, 74, 74, 0.7));
    opacity: 0.92;
}

.topSection .speaker-call p {
    font-size: 1.25rem;
    margin-bottom: 1.3rem;
}

.topSection .card-content {
    display: flex;
    padding: 1.5rem;
    align-items: center;
    flex-direction: column;
}

.topSection .card-content h2 {
    align-self: self-start;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.topSection #speakerButton {
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #ff0000;
    padding: 0 1em;
    color: white;
    font-size: 1.25em;
    height: 2.5em;
    border-width: 0;
    cursor: pointer;
    width: 10em;
    transition: background .2s ease, transform .2s ease;
    margin-right: 0;
    margin-top: 1.5rem;
}

.topSection #speakerButton2 {
    display: none;
    justify-content: center;
    border-radius: .5rem;
    background: #ff0000;
    padding: 0 1em;
    color: white;
    font-size: 1.25em;
    height: 2.5em;
    border-width: 0;
    cursor: pointer;
    width: 10em;
    transition: background .2s ease, transform .2s ease;
    margin-right: 0;
    margin-top: 1.5rem;
}

.topSection #speakerButton2 a {
    text-decoration: none;
    color: white;
}

.topSection #speakerButton:hover {
    transform: scale(1.04);
    background-color: rgb(159 51 51 / 89%);
}

.topSection #speakerButton a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 18px;
}

.block-container {
    justify-content: center;
    display: flex;
}

.countdown-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 80em;
    margin-top: 1em;
}

.countdown-container .black-box {
    background-color: black;
    height: 10em;
    width: 10em;
    text-align: center;
    display: fleX;
    flex-direction: column;
    justify-content: center;
}

.countdown-container .black-box .red-numbers {
    font-weight: 900;
    font-size: 3.125rem;
    color: #ff0000;
    margin-bottom: 0;
    margin-top: 0;
}

.black-box .white-letters {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.main-content {
    background-color: black;
    color: white;
    margin-left: 8rem;
}

.main-content article {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 5em;
}

.main-content .text-section {
    width: 50%;
    padding-right: 2em;
    padding-top: 2rem;
}

.main-content .text-section h3 {
    display: flex;
    margin-bottom: .2em;
    font-size: 2.25rem;
    font-weight: 700;
}

/* Tabs Section */
.main-content .tabs {
    background-color: #000;
    padding: 1.25rem 0;
}

.main-content .tabs nav ul {
    list-style: none;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.main-content .tabs nav ul li {
    margin: 0 0.938rem;
}

.main-content .tabs nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.625rem 0;
    position: relative;
}

.main-content .tabs nav ul li a.active {
    font-weight: bold;
}

.main-content .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6.25; /* Default width */
    height: 0.1875;
    background-color: #ff4136;
    transition: all 0.3s ease-in-out;
}

.main-content .tab-link {
    text-decoration: none;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-bottom: 0.125rem solid transparent;
    display: inline-block;
}

.main-content .tab-link.active {
    border-color: red;
}

.main-content .tab-content {
    position: relative;
    overflow: hidden;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    max-width: 50rem;
}

.main-content .tab-pane {
    display: none;
}

.main-content .tab-pane.active {
    display: block;
}

.main-content .button-section {
    margin-top: 2rem;
    width: 50%;
}

.main-content .ticketsButton {
    border-radius: .5rem;
    background: red;
    padding: 0 2em;
    color: white;
    font-size: 0.7em;
    height: 2.5em;
    border-width: 0;
    cursor: pointer;
    align-items: center;
    justify-items: center;
    display: flex;
    margin-right: 0;
    justify-content: space-between;
    transition: background .2s ease, transform .2s ease;
    margin-bottom: .8em;
}

.ticketsButton:hover {
    transform: scale(1.04); /* Slight zoom on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    background-color: darkred;
}

.ticketsButton {
    text-decoration: none;
}

.main-content .video-section {
    flex-shrink: 0;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5vw 4rem 4rem 0;
    margin-left: 2rem;
    width: 50%;
    height: 50vw;
    max-height: 60vh;
}

.main-content iframe.yt-shortcode {
    height: 50vw;
    margin: 1rem 0;
    max-height: 60vh;
    width: 100%;
}

.sponsor-section {
    padding: 1rem;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sponsor-section h2 {
    margin-bottom: 1rem;
  }

  .sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .sponsor-logos img {
    max-width: 20%;          
    height: auto;             
    flex: 1;                  
  }

  .topSection .info-block button {
    display: none;
  }

@media screen and (max-width: 1400px) {
    .main-content .button-section {
        width: 70%;
    }
}

@media screen and (max-width: 1200px) {
    .topSection {
        flex-direction: column;
        padding-top: 8em;
    }

    .main-content .button-section {
        width: 60%;
    }

    .topSection .message-container {
        padding-top: 0;
    }

    .countdown-container {
        width: 70em;
    }
}

@media screen and (max-width: 1150px) {
    .main-content {
        margin-left: 0;
    }

    .main-content article {
        flex-direction: column;
        padding-bottom: 0;
    }

    .main-content .text-section {
        width: 80%;
        padding: 0em 2em 2em;
    }

    .main-content .video-section {
        width: 70%;
        padding: 0;
        margin: 0;
    }

}

@media screen and (max-width: 950px) {
    .countdown-container {
        width: 50em;
    }

    .countdown-container .black-box {
        height: 8em;
        width: 8em;
    }

    .countdown-container .black-box .red-numbers {
        font-size: 40px;
    }
}

@media screen and (max-width: 850px) {
    .topSection {
        flex-direction: column;
    }

    .topSection .message-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .topSection .speaker-call {
        text-align: center;
    }

    .countdown-container .black-box .white-letters {
        font-size: 14px;
    }

    .main-content .text-section {
        width: 90%;
        display: flex;
        flex-direction: column;
    }

    .main-content .text-section h3 {
        align-self: center;
        margin-bottom: .5em;
    }

    .main-content .video-section {
        width: 95%;
    }

    .sponsor-logos {
    gap: 0.5rem;
    }

    .sponsor-logos img {
    max-width: 35%;          /* Make images responsive */
    }

    .topSection #mainEscapeImage {
        height: auto;
        max-width: 50%;
    }

    .topSection .info-block section {
        display: flex;
        flex-direction: column;      /* Stack items vertically */
        align-items: center;         /* Center horizontally */
        justify-content: center;     /* Center vertically */
        text-align: center; 
    }

}

@media screen and (max-width: 800px) {
    .countdown-container {
        width: 100%;
    }

    .countdown-container .black-box {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 650px) {
    .main-content .text-section {
        padding-top: 0;
    }

    .main-content .button-section {
        width: 80%;
    }
    .countdown-container .black-box {
        height: 7em;
        width: 7em;
    }

    .countdown-container .black-box .red-numbers {
        font-size: 30px;
    }

    .countdown-container .black-box .white-letters {
        font-size: 13px;
    }

    .main-content .text-section h3 {
        font-size: 1.9rem;
        align-self: center;
        margin-bottom: .5em;
    }

}

@media screen and (max-width: 648px) {
    .topSection .message-container {
        display: none;
    }

    .topSection .info-block section {
        display: flex;
        flex-direction: column;      /* Stack items vertically */
        align-items: center;         /* Center horizontally */
        justify-content: center;     /* Center vertically */
        text-align: center; 
    }

    .info-block #speakerButton2 {
        display: flex;
        align-items: left;
        max-height: 20%;
        max-width: 50%;
        font-size: small;
    }
    .info-block #speakerButton2 a {
        text-align: center;
    }
    .topSection .location {
        font-size: x-large;
        gap: 1.1em;
    }

}

@media screen and (max-width: 500px) {
    .topSection #speakerButton {
        font-size: 19px;
    }

    .countdown-container .black-box {
        height: 6em;
        width: 6em;
    }

    .topSection .location {
        font-size: x-large;
    }

}

@media screen and (max-width: 450px) {

    .countdown-container .black-box {
        height: 5em;
        width: 5em;
    }

    .main-content .button-section {
        width: 100%;
    }

    .countdown-container .black-box .red-numbers {
        font-size: 25px;
    }

    .countdown-container .black-box .white-letters {
        font-size: 12px;
    }

    .main-content .button-section {
        margin-top: 1.5rem;
    }

}

@media screen and (max-width: 400px) {
    .main-content .ticketsButton {
        width: auto;
        padding: 0 1em;
    }

    .topSection .location {
        font-size: large;
    }

}

@media screen and (max-width: 350px) {

    .main-content .text-section h3 {
        font-size: 23px;
    }

    .countdown-container .black-box {
        height: 4em;
        width: 4em;
    }

    .countdown-container .black-box .red-numbers {
        font-size: 20px;
    }

    .countdown-container .black-box .white-letters {
        font-size: 11px;
    }

    .main-content .ticketsButton {
        font-size: 10px;
    }

    .main-content .video-section {
        margin: 1rem;
    }

    .main-content article {
        padding-bottom: 0;
    }

    .topSection .location {
        font-size: small;
    }

    .topSection {
        padding: 6rem 1rem 1rem 1rem;
    }

    .info-block #speakerButton2 {
        font-size: x-small;
    }
}