@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --neon-pink: #ff0080;
    --neon-purple: #7928ca;
    --neon-cyan: #00dfd8;
    --bg-dark: #0f172a;
    --card-glass: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background: #f8fafc !important;
    color: #1e293b;
    overflow-x: hidden;
}

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

.blob {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
}

.blob-1 { background: var(--neon-pink); top: -100px; right: -100px; animation: float 20s infinite alternate; }
.blob-2 { background: var(--neon-cyan); bottom: -100px; left: -100px; animation: float 25s infinite alternate-reverse; }
.blob-3 { background: var(--neon-purple); top: 50%; left: 50%; animation: float 30s infinite linear; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Vibrant Hero */
.hero-vibrant {
    position: relative;
    padding: 160px 0;
    background: url('../img/hero_vibrant.png') center/cover no-repeat;
    color: white;
    text-align: center;
    border-radius: 0 0 80px 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    margin-bottom: -80px;
}

.hero-vibrant::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
    border-radius: inherit;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-vibrant {
        padding: 60px 0 100px;
        border-radius: 0 0 40px 40px;
        background-position: top center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 15px;
        line-height: 1.1;
    }
    .hero-content p {
        font-size: 1rem;
        margin-top: 15px;
    }
    .filter-console {
        flex-direction: column;
        padding: 25px 20px;
        margin: -80px 15px 40px;
        border-radius: 28px;
        gap: 12px;
        width: auto;
    }
    .filter-console > div {
        width: 100% !important;
    }
    .btn-neon {
        width: 100% !important;
        height: 54px !important;
        margin-top: 5px;
    }
    .section-vibrant-title {
        font-size: 1.8rem;
        margin: 20px 0 30px;
        padding: 0 15px;
    }
    .spardha-arena {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 15px 80px !important;
        gap: 25px;
    }
    .neon-card {
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        border-radius: 32px;
    }
    .card-thumb {
        height: 150px;
    }
    .card-content {
        padding: 20px;
    }
    .card-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px;
        height: auto;
    }
    .info-box {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    .info-value {
        font-size: 1.1rem !important;
    }
    .info-value {
        font-size: 1.3rem !important;
    }
    .info-item-full {
        grid-column: span 1 !important;
    }
    .card-footer-action {
        padding: 0 20px 25px;
    }
    .btn-participate-neon {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Vibrant Dark Header */
#header1 .navbar-default {
    background: #0f172a !important;
    border: none !important;
    border-bottom: 3px solid var(--neon-purple) !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

#header1 .navbar-brand img {
    height: 45px !important;
    filter: brightness(0) invert(1); /* Make logo white if needed, or adjust */
}

#header1 .navbar-nav > li > a, #header1 .navbar-right li a {
    color: #f8fafc !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem !important;
}

#header1 .navbar-nav > li > a:hover, #header1 .navbar-right li a:hover {
    color: var(--neon-cyan) !important;
}

#header1 .search_admin .form-control {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
}

.navbar-brand img {
    height: 40px !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav > li > a {
    font-weight: 700 !important;
    color: #475569 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem !important;
}

/* Header Polish */
.search_admin .form-control {
    border-radius: 12px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    height: 40px !important;
    padding-left: 15px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
    margin-top: 10px;
}

.navbar-right li a {
    color: #475569 !important;
    font-weight: 700 !important;
    padding: 15px 12px !important;
}

/* Footer Matching */
#footer.footer_container {
    background: #0f172a !important;
    color: #f1f5f9 !important;
    padding: 100px 0 60px !important;
    border-top: 5px solid var(--neon-purple) !important;
}

#footer .footer_title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 20px !important;
    display: block;
}

#footer a {
    color: #94a3b8 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: var(--neon-cyan) !important;
    transform: translateX(5px);
}

#footer .copyright {
    font-size: 1rem !important;
    margin-top: 40px !important;
    opacity: 0.8;
}

.modal-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px !important;
}

.modal-header h4 {
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f172a;
}

.modal-body .form-control {
    border-radius: 12px !important;
    height: 48px !important;
    border: 2px solid #f1f5f9 !important;
    font-weight: 600 !important;
}

.modal-footer {
    border-top: none !important;
    padding: 20px !important;
}

.blue_btn {
    background: var(--neon-purple) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 25px !important;
    font-weight: 800 !important;
}

/* Dropdowns */
.dropdown-menu {
    border-radius: 16px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    padding: 10px !important;
}

.dropdown-menu > li > a {
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
}

.dropdown-menu > li > a:hover {
    background: #f8fafc !important;
    color: var(--neon-pink) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Vibrant Filter Console */
.filter-console {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 20px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    max-width: 1100px;
    margin: 0 auto 80px;
}

.filter-console select {
    border: none !important;
    background: #f1f5f9 !important;
    border-radius: 15px !important;
    height: 50px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.btn-neon {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple)) !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 0 40px !important;
    height: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 0, 128, 0.3) !important;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.5) !important;
}

/* Vibrant Grid */
.spardha-arena {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    padding: 0 40px 100px;
}

/* Neon Glow Card */
.neon-card {
    background: var(--card-glass);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
}

.neon-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(121, 40, 202, 0.2);
}

.card-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(to top, var(--card-glass), transparent);
}

.card-category-pill {
    position: absolute;
    top: 25px; left: 25px;
    background: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--neon-pink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-content {
    padding: 20px 25px;
    flex-grow: 1;
}

.card-content h2 {
    font-size: 1.6rem !important;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
    line-height: 1.2;
    height: 3.8rem;
    overflow: hidden;
}

.info-box {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-label {
    font-size: 0.75rem !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1rem !important;
    font-weight: 800;
    color: #0f172a;
}

.card-footer-action {
    padding: 0 25px 25px;
}

.btn-participate-neon {
    display: block;
    width: 100%;
    background: var(--bg-dark);
    color: white !important;
    padding: 18px;
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-participate-neon:hover {
    background: var(--neon-purple);
    box-shadow: 0 10px 20px rgba(121, 40, 202, 0.4);
}

.btn-view-expired {
    background: #e2e8f0;
    color: #64748b !important;
}

/* Vibrant Header Labels */
.section-vibrant-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.section-vibrant-title span {
    color: var(--neon-pink);
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

/* Additional Informative Sections */
.info-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--neon-pink);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(255, 0, 128, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.vibrant-about {
    background: #0f172a;
    color: white;
    border-radius: 60px;
    padding: 80px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.vibrant-about::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: var(--neon-purple);
    filter: blur(100px);
    opacity: 0.3;
}

.about-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.8;
}
