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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

a.link{
    color: #41FE84;
    text-decoration: none;
}

.upcomming_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom:16px;
}

.upcoming-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #41FE84;
    box-shadow: 0 0 8px rgba(65, 254, 132, 0.8);
    flex-shrink: 0;
}
.footer .section-container{
    display: flex;
    justify-content: space-between;
}
.footer-links p{
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #41FE84;
    margin-bottom: 10px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links .logo-wrapper{
    border: 1px solid #41FE84;
    padding: 12px 14px;
    border-radius: 50px;
}
/* Navigation Bar */
/* Hamburger button - hidden on desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animates to X when menu is open */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #020204CC;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    width: 67%;
    margin: auto;
    border-radius: 55px;
    border: 0.5px solid #E2E2E2;
    margin-top: 50px;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-logo img{
    width:auto;
}

.navbar-logo span:first-child {
    color: #ffffff;
}

.navbar-logo span:last-child {
    color: #ffffff;
}

.navbar-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #b0b8c0;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-btn {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.phone_row {
    display: flex;
    background: #00000033;
    padding: 20px 42px;
    border-radius: 49px;
    border: 1px solid #252525;
    align-items: center;
    justify-content: space-around;
    margin: 25px 58px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;

    background:
        linear-gradient(#0c1018, #0c1018) padding-box,
        linear-gradient(90deg, #170FF4, #41FE84) border-box;

    border: 1.5px solid transparent;
    border-radius: 999px;   /* Fully rounded */

    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
}

.language-btn:hover {
    background:
        linear-gradient(rgba(20,40,60,.8), rgba(20,40,60,.8)) padding-box,
        linear-gradient(90deg, #170FF4, #41FE84) border-box;
}

.lang-globe {
    display: inline-block;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.language-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: linear-gradient(#0c1018, #0c1018) padding-box, linear-gradient(90deg, #170FF4, #41FE84) border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.language-dropdown.active {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
    border-bottom: 1px solid #ffff;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option .flag {
    font-size: 1.25rem;
}

.lang-option span:last-child {
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero-image-wrapper {
    width: 100%;
    line-height: 0; 
    position: relative;
}

.hero-section {
    position: relative;
    background: linear-gradient(90deg, #000000 0%, #000509 50%, #000000 100%);
    overflow: hidden;
}
.hero-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    margin-top: -929px;
}

.hero-content-wrapper {
     z-index: 2;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 164px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 72px;
}


.hero-content {
    margin-top: 60px;   /* ← push subtitle/button down from title, adjust freely */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.hero-title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffffff;
    line-height: 41px;
}

.scroll-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===== HOW TO ENTER SECTION ===== */
.how-to-enter-section {
    width: 100%;
    padding: 5rem 2rem;
    background: #000000;
    margin-top: -554px;
    z-index: 2;
    position: relative;
}

.section-container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4.4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 70px;
    overflow: hidden;
    background: #020207;
    transition: all 0.3s ease;
}

.accordion-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: left;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.accordion-button:hover {
    color: #ffffff;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-button:hover .step-number {
    border-color: rgba(255, 255, 255, 0.6);
}

.step-title {
    flex: 1;
    font-weight: 700;
    font-size: 42px;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-button.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    transition: max-height 0.5s ease; 
}
.accordion-item.active {
    background: #1C1C20;
}
.accordion-item.active .accordion-content{
    max-height: 900px;
    padding: 1.5rem 2rem;
    padding-top: 0px;
}

.accordion-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #d0d8e0;
    margin: 0;
    padding-left: 73px;
}
.play-btn{
    display: flex;
    gap: 10px;
    align-items: center;
}

.play-btn span {
    color: #41FE84;
    font-weight: 700;
    font-size: 1.7rem;
}

.accordion-content .phone_strip{
    font-size: 2.4rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-left: 73px;
    line-height: 36px;
    font-weight: 700;
}

/* ===== T&C SECTION ===== */
.tc-section {
    width: 100%;
    padding: 5rem 2rem;
    background: #000000;
}

.tc-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 500px;
    background: linear-gradient(135deg, rgba(70, 120, 160, 0.4) 0%, rgba(30, 70, 110, 0.6) 100%);
    border: 2px solid rgba(100, 150, 200, 0.3);
    border-radius: 30px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.tc-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.tc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(70 120 160 / 0%) 0%, rgb(30 70 110 / 4%) 100%);
    pointer-events: none;
    z-index: 1;
}

.tc-card:hover {
    border-color: rgba(100, 150, 200, 0.6);
    background: linear-gradient(135deg, rgba(80, 130, 170, 0.5) 0%, rgba(40, 80, 120, 0.8) 100%);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tc-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tc-card-label {
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
}


.tc-card-title img {
    width: 100%;
}

.tc-card-cta {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 1rem 0 0 0;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 500;
}

.tc-card-icon {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    animation: pulse 2s infinite;
}
.read-tc-acc{
    font-size: 1.5rem;
    padding-left: 70px;
    margin-top: 16px;
    display:block;
}

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

/* ===== EVENTS SECTION ===== */
.events-section {
    width: 100%;
    padding: 5rem 2rem;
    background: #000000;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: #1C1C20;
    border-radius: 70px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.event-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-icon img{
    width: 150px;
}

.event-info {
    flex: 1;
}

.event-name {
    font-size: 3.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.event-date {
    color: #41FE84;
    font-weight: 600;
    font-size: 1.4rem;
}

.event-location {
    color: #939393;
    font-size: 1.4rem;
}

.event-card.highlight-last {
    background:linear-gradient(
        360deg,
        rgba(65,254,132,.45) -12.17%,
        rgba(102,102,102,0) 63.48%
    ),
    #1C1C20;
    background-blend-mode: normal;
}
.load-more-btn{
    width:100%;
    height:58px;
    margin:20px 0;
    border:1px solid #41FE84;
    background:#000;
    color:#41FE84;
    border-radius:18px;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.load-more-btn:hover{
    background:#41FE84;
    color:#000;
}

.follow-btn {
    display: block;
    margin: 0 auto;
    padding: 1rem 3rem;
    font-size: 6.8rem;
    font-weight: 700;
    color: #41FE84;
    background: transparent;
    border: 1px solid #41FE84;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.follow-btn:hover {
    background: rgba(15, 254, 0, 0.1);
    box-shadow: 0 0 20px rgba(15, 254, 0, 0.3);
}

.follow-btn:active {
    transform: scale(0.98);
}

/* T&C Preview Card - NOT USED */
/* (Removed - now using modal only) */

/* Download Button - NOT USED */
/* (Removed - functionality moved to modal) */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(20, 35, 60, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

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

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.modal-body {
    padding: 3rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.modal-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d8e0;
    margin-bottom: 1.75rem;
}

.tc-section-content {
    margin-bottom: 2rem;
}

.tc-section-content .tc-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.tc-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d8e0;
    margin: 0;
}

.tc-list {
    list-style: none;
    padding-left: 1.25rem;
    margin: 0;
}

.tc-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d8e0;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.75rem;
}

.tc-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #90a8b8;
    font-weight: bold;
}

/* Footer */
.footer {
    width: 100%;
    background: #000;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: left;
    gap: 0.5rem;
}

.footer-logo span:first-child {
    color: #ffffff;
}

.footer-logo span:last-child {
    color: #ffffff;
}
.phone_img img{
    width: 80%;
}
@media (max-width: 768px) {
    .navbar-container {
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }

    /* Bigger logo on mobile now that nav links are hidden */
    .navbar-logo img {
        height: auto;
        width: 110px;
    }

    .hamburger-btn {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #0c1018;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.35s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .navbar-menu.active {
        right: 0;
        justify-content: left;
    }

    .navbar-menu .nav-link {
        font-size: 14px;
        width: 100%;
        text-align: left;
    }

    .navbar-menu .language-selector {
        margin-top: 1rem;
        width: 100%;
    }

    .navbar-menu .language-btn {
        width: 100%;
        justify-content: space-between;
    }

    /* Overlay behind menu when open */
    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .accordion-content .phone_strip{
        padding-left: 5px;
        font-size: 1.8rem;
        text-align: center;
    }
    .navbar{
        width: 82%;
    }
    .navbar-container {
        flex-direction: row;
        gap: 1rem;
        padding: 0 1rem;
    }

    .navbar-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    
   .phone_row{
       flex-direction: column;
   }
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-section{
        height: 838px;
    }
    .hero-content-wrapper{
        padding: 6rem 0px;
        gap: 0px;
        margin-top: 0px;
    }
    .hero-image{
        margin-top: -700px;
    }
    .event-name{
        font-size: 1.8rem;
    }
    .event-icon img{
        width: 120px;
        height: 120px;
    }
    .how-to-enter-section,
    .tc-section,
    .events-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .accordion-content.active {
        padding: 1rem 1.5rem;
    }

    .accordion-content p{
        font-size: 1.6rem;
    }

    .tc-card {
        max-width: 100%;
        height: 400px;
        padding: 2rem 1.5rem;
    }

    .tc-card-title {
        font-size: 2rem;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        border-radius: 20px;
    }

    .event-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }
    .how-to-enter-section{
        margin-top: -60px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
        width: 100%;
    }

    .navbar-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    .phone_row{
        padding: 11px 3px;
        margin:5px 5px;
        border-radius: 20px;
    }
    .accordion-content .phone_strip{
        padding-left: 5px;
        font-size: 1.2rem;
        text-align: center;
    }
    .read-tc-acc{
        padding-left: 34px;
        font-size: 1rem;
    }
    .navbar-logo {
        font-size: 1rem;
    }

    .navbar-menu {
        gap: 10px;
    }


    .language-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .language-dropdown {
        min-width: 160px;
    }

    .hero-section {
        padding: 0 1rem;
        height: 680px;
    }
    .hero-image{
        margin-top: -532px;    
    }
    
    .hero-content-wrapper{
        gap: 61px;
        margin-top: 0px;
    }
    .hero-title {
        font-size: 2rem;
        margin-top: -72px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 35px;
    }

    .how-to-enter-section,
    .tc-section,
    .events-section {
        padding: 2rem 1rem;
    }
    
    .how-to-enter-section{
        margin-top: -100px;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .accordion {
        gap: 1rem;
    }
    
    .accordion-item{
        border-radius: 25px;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .accordion-content.active {
        padding: 1rem 1.25rem;
    }

    .accordion-content p {
        font-size: 1rem;
        padding-left: 33px;
    }

    .tc-card {
        max-width: 100%;
        height: 350px;
        padding: 1.5rem 1rem;
    }

    .tc-card-label {
        font-size: 0.85rem;
    }

    .tc-card-title {
        font-size: 1.75rem;
    }

    .tc-card-cta {
        font-size: 0.8rem;
    }

    .event-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .event-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .event-icon img{
        width: 60px;
        height: 60px;
    }

    .event-name {
        font-size: 1.2rem;
    }

    .event-date,
    .event-location {
        font-size: 0.8rem;
    }

    .follow-btn {
        padding: 0.75rem 4.8rem;
        font-size: 1.5rem;
        border-radius: 16px;
        width: 100%;
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-overlay {
        padding: 1rem;
    }
    .footer-links p{
        font-size: 1.2rem;
    }
    .social-links .logo-wrapper {
        padding: 6px 9px;
    }
}

/* Cross-browser fixes */
input, button, textarea, select {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure proper rendering on all browsers */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Print styles */
@media print {
    .navbar,
    .download-btn,
    .modal-overlay {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1060px) {
    .navbar{
        width: 90%;
    }
}
