
/* ====== Global Reset ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ====== Body ====== */
body {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

/* ====== Navbar ====== */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo img {
    height: 50px;
}

#rightLogo {
    height: 80px;
}




.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.title-section img {
    width: 120px;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}



.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.tab-container {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    gap: 5px;
}

.tab-container a {
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    color: #aaa;
    font-weight: 500;
    transition: 0.3s ease;
}

.tab-container a.active {
    background: linear-gradient(135deg, #00c896, #00e6a8);
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

.content {
    margin-top: 50px;
    text-align: center;
}

/* ====== Container ====== */
.wrap {
    width: 100%;
    max-width: 1100px;
    /* background: rgba(255, 255, 255, 0.08); */
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    /* box-shadow: 0 0 25px rgba(255, 255, 255, 0.08); */
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease;
}

.wrap h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ====== Controls ====== */
.controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.controls input,
.controls select {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    outline: none;
}

/* Make dropdown dark */
select {
    background-color: #0f1a1a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dropdown options */
select option {
    background-color: #0f1a1a;
    color: white;
}

/* ====== Event Grid ====== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    height: 200px;
    gap: 15px;
}

/* ====== Event Card ====== */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    height: 150px;

}

.event-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.event-card h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

/* ====== Badges ====== */
.badges {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 8px;
}

.badge {
    padding: 5px 10px;
    font-size: 0.85rem;
    border-radius: 8px;
    background: #00e6a8;
    color: #000;
    font-weight: 600;


}

/* ====== Footer ====== */
.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
}

.footer p {
    font-size: 0.8rem;
    color: #ccc;
}

/* ====== Animation ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* ====== Responsive ====== */
@media (max-width: 600px) {
    .main-title {
        font-size: 2rem;
    }

    .wrap {
        padding: 1.5rem;
    }
}

