* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    color: #fff;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
    height: 100px;
}

.navbar.scrolled {
    background-color: #c1ba7a;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo img {
    height: 10px;
    width: auto;
}

.left-logo img {
    height: 60px;
    /* Custom size for left logo */
    width: auto;
}

.right-logo img {
    height: 90px;
    /* Custom size for right logo */
    width: auto;
    margin-right: 100px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 150px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);

}

.nav-links a:hover {
    color: rgba(212, 175, 55, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.announcement-wrapper {
    height: 150px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    margin-top: 102px;
}

.announcement-scroller {
    animation: scroll-up 8s linear infinite;
    white-space: nowrap;
    display: inline-block;
    padding: 0 20px;
    font-size: 2rem;
    color: #ffffff;
}

.announcement-item {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    min-width: 100%;
    line-height: 2;
    white-space: normal;
    word-break: break-word;
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Optional: Responsive font sizes */
@media (max-width: 768px) {
    .announcement-item {
        font-size: 1.5rem;
    }

    .navbar {
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 15px 5%;
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.5s ease;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        margin-left: 0px;
    }


    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    .logo img {
        height: 40px;
    }

    .left-logo img {
        height: 30px;
    }

    .right-logo img {
        height: 50px;
        margin-left: 10px;
    }

}

@media (max-width: 480px) {
    .announcement-item {
        font-size: 1.2rem;
    }

    .navbar {
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 15px 5%;
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.5s ease;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        margin-left: 0px;
    }


    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    .logo img {
        height: 40px;
    }

    .left-logo img {
        height: 30px;
    }

    .right-logo img {
        height: 50px;
        margin-left: 10px;
    }

}


.date-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 10px;
    background: #000000;
    margin-top: 100px;
}

.date-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    padding: 10px 15px;
    width: 120px;
}

.date-box .day {
    font-size: 2rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.date-box .label {
    font-size: 1rem;
    margin-top: 4px;
    line-height: 1.2;
    color: #ffffff;
}

.date-box:hover,
.date-box.active {
    transform: translateY(-5px);
    border-color: #000000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);


}

.stage-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.stage-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border-left: 6px solid #ffd700;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    transition: transform 0.3s;
}

.stage-card:hover {
    transform: translateY(-5px);
}

.stage-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: #5c2c0d;
}

.stage-card p {
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.stage-card a {
    color: #007BFF;
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stage-card {
        width: 90%;
    }

    .date-box {
        width: 100px;
        padding: 8px;
    }

    .date-box .day {
        font-size: 1.5rem;
    }

    .date-box .label {
        font-size: 0.85rem;
    }
}

.cancel {
    height: 100px;
    overflow: hidden;
    background-color: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    margin-top: 20px;
}

.cancel p {
    font-size: larger;
}