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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 215, 0, 0.14), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(15, 118, 110, 0.12), transparent 26%),
        linear-gradient(135deg, #f0f4ff 0%, #fff9e6 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #1E3A8A 0%, #2563EB 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFC700);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #1E3A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: none;
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: none;
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 920px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    padding: 0 1.25rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff7c7;
    font-weight: 700;
    letter-spacing: 0.4px;
    backdrop-filter: blur(14px);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gold {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #1E3A8A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFED4E, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn-ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.22);
}

/* Events Section */
.events {
    padding: 120px 0 80px;
    background: #f1f5f9;
}

.coming-soon-notice {
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 2.2rem;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3ebc8;
    color: #1E3A8A;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.coming-soon-notice h3 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #1E3A8A;
    margin: 1rem 0 0.6rem;
    line-height: 1.2;
}

.coming-soon-notice p {
    color: #0f766e;
    font-size: 1.1rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.event-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: none;
    border: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFC700, #FFB700);
}

.event-card:hover {
    transform: none;
    box-shadow: none;
    background: #ffffff;
}

.events-page.hero {
    min-height: 52vh;
    padding: 120px 1rem 70px;
}

.event-list {
    padding: 100px 0 80px;
}

.event-summary-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.event-summary-head h2 {
    color: #1E3A8A;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    margin: 0.8rem 0 0.5rem;
    line-height: 1.25;
}

.event-summary-head p {
    color: #0f766e;
    font-size: 1.05rem;
    font-weight: 600;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.14);
    color: #1E3A8A;
    font-weight: 800;
}

.event-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.event-chip-grid span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(30, 58, 138, 0.06);
    color: #1E3A8A;
    font-weight: 800;
}

.cricket-card {
    grid-template-columns: 1fr;
}

.sport-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.sport-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08);
}

.sport-card img {
    width: 100%;
    object-fit: cover;
    min-height: 240px;
}

.sport-card-content {
    padding: 1.5rem;
}

.sport-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #1E3A8A;
}

.sport-card-content p {
    color: #475569;
    line-height: 1.6;
}

.event-date h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.venue {
    font-size: 1.15rem;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(255, 215, 0, 0.08);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.event-sports h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin: 1.5rem 0;
}

.sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.8rem 1.5rem;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #ffffff;
    height: auto;
    position: relative;
}

.sport-item:hover {
    transform: none;
    box-shadow: none;
    background: #ffffff;
}

.sport-item input {
    margin-bottom: 0.8rem;
    accent-color: #1E3A8A;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.sport-item span {
    text-align: center;
    line-height: 1.4;
}

.sport-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
}

.sport-item:hover .sport-label {
    transform: translateY(-1px);
    text-shadow: 0 3px 10px rgba(255, 215, 0, 0.35);
    opacity: 0.95;
}

.sport-blue { color: #2563eb; }
.sport-green { color: #16a34a; }
.sport-cyan { color: #0ea5e9; }
.sport-amber { color: #f59e0b; }
.sport-dark { color: #111827; }
.sport-red { color: #dc2626; }

.badminton-icon {
    display: inline-block;
    line-height: 1;
    transform: translateY(1px);
}

/* Dynamic Inline Category Dropdowns Settings */
.sport-age-group {
    display: none; 
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dashed #FFD700;
    animation: slideDownFade 0.25s ease-out forwards;
}

.sport-age-group label {
    font-size: 0.85rem;
    color: #1E3A8A;
    display: block;
    margin-bottom: 8px;
    margin-top: 12px;
    font-weight: 700;
    text-align: left;
}

.sport-age-group label:first-child {
    margin-top: 0;
}

.sport-age-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #fffbf0 0%, white 100%);
    color: #1E3A8A;
    cursor: pointer;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sport-age-group select:hover {
    border-color: #FFC700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
    background: linear-gradient(135deg, #fff7d6 0%, #ffffff 100%);
}

.sport-age-group select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.partner-field {
    display: none;
    margin-top: 10px;
}

.partner-field input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #fffbf0 0%, white 100%);
    color: #1E3A8A;
    font-weight: 600;
}

.partner-field input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sport-count {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
}

/* Registration Form Section */
.register {
    padding: 120px 0 100px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.register::before {
    content: none;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.register .section-title {
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-form {
    background: #ffffff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.register-form:hover {
    border-color: #e2e8f0;
    box-shadow: none;
    transform: none;
}

.register-form::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1E3A8A, #2563EB, #3B82F6);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.registration-games-slot {
    grid-column: 1 / -1;
}

.register-form .form-group {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.95rem;
    transition: border-color 0.22s ease;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
    color: #10234f;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    box-shadow: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, white 0%, #fffbf0 100%);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.register-form .btn-primary:hover {
    box-shadow: none;
}

.register-form .registration-game-card {
    margin-bottom: 1.5rem;
    border: 1px solid #d7e1f1;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.85rem;
}

.register-form .registration-game-card .event-date h3 {
    font-size: 1.65rem;
}

.game-date-toggle {
    width: 100%;
    border: 1px solid #d3deef;
    background: #f8fbff;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.15rem 0.65rem;
    align-items: center;
    text-align: left;
    color: #1E3A8A;
    cursor: pointer;
}

.game-date-main {
    font-size: 1.05rem;
    font-weight: 800;
}

.game-date-sub {
    grid-column: 1 / 2;
    color: #0f766e;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-date-hint {
    grid-column: 1 / 2;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-date-toggle i {
    color: #1E3A8A;
    transition: transform 0.25s ease;
}

.game-dropdown-body {
    display: none;
    padding-top: 0.95rem;
}

.registration-game-card.open .game-dropdown-body {
    display: block;
}

.registration-game-card.open .game-date-toggle i {
    transform: rotate(180deg);
}

.register .section-title {
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.event-summary-wrapper .sport-item {
    cursor: default;
}

.thankyou-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 10, 28, 0.58);
    z-index: 1400;
    padding: 1rem;
}

.thankyou-modal.show {
    display: flex;
}

.thankyou-dialog {
    width: min(460px, 100%);
    background: #ffffff;
    border: 1px solid #dbe4f2;
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(15, 35, 79, 0.24);
    padding: 1.5rem;
    text-align: center;
}

.thankyou-dialog h3 {
    color: #1E3A8A;
    margin-bottom: 0.55rem;
}

.thankyou-dialog p {
    color: #334155;
    margin-bottom: 1rem;
}

/* Footer layout */
.footer {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #FFED4E;
    text-decoration: underline;
}

/* Admin Section Styling */
.admin-box {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff9e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#login-section {
    max-width: 500px;
    width: 100%;
}

#login-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

#loginForm {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 35px 70px rgba(30, 58, 138, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

#loginForm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1E3A8A, #2563EB, #3B82F6);
}

#loginForm input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

#loginForm input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, white 0%, #fffbf0 100%);
}

#loginForm button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #1E3A8A;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
}

#loginForm button:hover {
    background: linear-gradient(135deg, #FFED4E, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Dashboard Section */
.dashboard-box {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff9e6 100%);
    padding: 3rem 2rem;
}

.dashboard-box h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

#logoutBtn {
    display: block;
    margin: 0 auto 3rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #1E3A8A;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
}

#logoutBtn:hover {
    background: linear-gradient(135deg, #FFED4E, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.dashboard-box table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.12);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.dashboard-box thead {
    background: linear-gradient(90deg, #1E3A8A 0%, #2563EB 100%);
}

.dashboard-box th {
    padding: 1.5rem;
    color: white;
    font-weight: 700;
    text-align: left;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
}

.dashboard-box td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #333;
    font-weight: 500;
}

.dashboard-box tbody tr {
    transition: all 0.3s ease;
}

.dashboard-box tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    transform: translateX(5px);
}

.dashboard-box tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 980px) {
    .event-summary-card {
        grid-template-columns: 1fr;
    }

    .event-chip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile Responsiveness Rules */
@media (max-width: 768px) {
    .navbar {
        padding: 0.85rem 0;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }

    .site-logo {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 7px;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #1E3A8A 0%, #2563EB 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 22px 35px rgba(15, 35, 79, 0.22);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .register-form {
        padding: 2.5rem 1.5rem;
        border-radius: 22px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 3rem 0;
    }

    .hero-title {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin: 0 auto;
    }

    .btn,
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }

    .events,
    .register,
    .event-list {
        padding-top: 72px;
        padding-bottom: 60px;
    }

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

    .event-chip-grid {
        grid-template-columns: 1fr;
    }

    .events-page.hero {
        min-height: 46vh;
        padding: 105px 1rem 55px;
    }
}

@media (max-width: 430px) {
    .container,
    .nav-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-kicker {
        font-size: 0.82rem;
        padding: 0.55rem 0.75rem;
    }

    .form-grid {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .sport-item {
        padding: 1.35rem 1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .coming-soon-notice {
        padding: 1.5rem 1.2rem;
    }
}
