/* National Championship Page Specific Styles - Premium Redesign */

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Featured Event Card */
.featured-event {
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.event-box {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-details h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

.event-info-list {
    list-style: none;
    margin-top: 30px;
}

.event-info-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 500;
}

.event-info-list li i {
    color: var(--orange);
    font-size: 24px;
}

.event-timer {
    background: var(--primary);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.timer-box h3 {
    font-size: 36px;
    color: var(--orange);
}

.timer-box span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.cat-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.cat-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Past Champions Table */
.champions-section {
    background: #fdfdfd;
}

.cham-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.cham-table th {
    background: var(--primary);
    color: var(--white);
    text-align: left;
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.cham-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.cham-table tr:hover {
    background: #fff8f5;
}

.winner-badge {
    background: #fff3e0;
    color: #ef6c00;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .event-box { grid-template-columns: 1fr; gap: 40px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-title { font-size: 42px; }
}

@media (max-width: 600px) {
    .cat-grid { grid-template-columns: 1fr; }
    .timer-grid { grid-template-columns: repeat(2, 1fr); }
    .event-box { padding: 30px; }
}
