/* Team Colors */
:root {
    --primary-red: #dc2626;
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --primary-gold: #fbbf24;
    --dark-red: #b91c1c;
    --light-gold: #fcd34d;
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-black) 0%, #374151 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--gradient-secondary);
    color: var(--primary-white);
    min-height: 100vh;
}

/* Fixed navbar spacing utility */
.navbar-spacing {
    padding-top: 80px;
}

/* Ensure content doesn't get hidden behind fixed navbar */
main {
    padding-top: 0;
}

/* Navigation */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Add space for fixed navbar */
    box-sizing: border-box; /* Include padding in height calculation */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.text-gold {
    color: var(--primary-gold);
}

.text-red {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    min-width: 200px;
    text-align: center;
    flex: 0 0 auto;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-black);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
    color: var(--primary-black);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Hockey Puck Animation */
.hockey-puck-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.hockey-puck-animation i {
    font-size: 8rem;
    color: var(--primary-gold);
    animation: puckSpin 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

@keyframes puckSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.section-divider {
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.section-divider h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.section-divider p {
    margin-bottom: 0;
}

/* Tournament Info Cards */
.tournament-info {
    background: var(--gradient-secondary);
    backdrop-filter: blur(10px);
}

/* Override red gradient on mobile for better contrast */
@media (max-width: 768px) {
    .tournament-info.features {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.info-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Features Section */
.features {
    background: var(--gradient-primary);
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Payment Information Section */
.payment-info {
    background: var(--gradient-secondary);
    position: relative;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.fee-amount {
    font-weight: 900;
    line-height: 1;
}

.fee-amount .currency {
    font-size: 2.5rem;
    color: var(--primary-gold);
    vertical-align: super;
}

.fee-amount .amount {
    font-size: 5rem;
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.payment-details h4 {
    color: var(--primary-white);
    font-weight: 600;
}

.payment-details p {
    color: rgba(255, 255, 255, 0.8);
}

.email-box {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--primary-white);
    font-size: 1.1rem;
}

.email-box i {
    color: var(--primary-gold);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    color: var(--primary-white);
}

/* Registration Form */
.register-section {
    background: var(--gradient-secondary);
    min-height: 100vh;
    padding-top: 100px; /* Extra space for fixed navbar */
}

.register-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-white);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
    color: var(--primary-white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: var(--primary-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.registration-info {
    background: rgba(251, 191, 36, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

/* Team management */
.manage-section-heading,
.new-players-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.manage-section-heading {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.manage-section-heading h4,
.new-players-heading h5 {
    color: var(--primary-white);
    margin-bottom: 0;
    font-weight: 650;
}

.manage-section-heading h4 i,
.new-players-heading h5 i {
    color: var(--primary-gold);
}

.manage-section-heading p,
.new-players-heading p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0.35rem 0 0;
}

.roster-count,
.batch-badge {
    color: var(--primary-gold);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.roster-player-row {
    margin-left: 0;
    margin-right: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
}

.roster-player-row .form-label,
.new-player-row .form-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.new-players-panel {
    padding: 1.25rem;
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.06);
}

.new-players-heading {
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.new-player-row {
    margin-left: 0;
    margin-right: 0;
}

.management-note {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    color: #6b4f00;
    background: #fff3cd;
    border: 1px solid #ffda6a;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .manage-section-heading,
    .new-players-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .roster-player-row,
    .new-players-panel {
        padding: 0.85rem;
    }
}

/* Schedule Styles */
.schedule-section {
    background: var(--gradient-secondary);
    min-height: 100vh;
    padding-top: 100px; /* Extra space for fixed navbar */
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.schedule-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.schedule-table thead tr {
    background: var(--gradient-primary);
}

.schedule-table thead th {
    color: var(--primary-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 1rem;
    border: none;
    white-space: nowrap;
}

.schedule-table thead th.time-col,
.schedule-table thead th.date-col,
.schedule-table thead th.rink-col {
    text-align: center;
}

.schedule-table thead th.team-col {
    text-align: center;
}

.schedule-table thead th.vs-col {
    text-align: center;
}

.schedule-table thead th i {
    color: var(--primary-gold);
}

.schedule-table tbody .game-row {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table tbody .game-row:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.schedule-table tbody td {
    padding: 1.25rem 1rem;
    color: var(--primary-white);
    vertical-align: middle;
    border: none;
    text-align: center;
}

.time-cell {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.date-cell {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.team-cell {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-white);
    text-align: center;
}

.team-cell .town-name {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.team-cell .team-name {
    font-weight: 700;
    color: var(--primary-white);
}

.team-a {
    /* Centered alignment to match header */
}

.team-b {
    /* Centered alignment to match header */
}

.vs-cell {
    text-align: center;
    padding: 0.5rem;
}

.vs-badge {
    background: var(--gradient-primary);
    padding: 6px 12px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
    color: var(--primary-white);
}

.rink-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.division-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-white);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .schedule-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 0.6rem 0.3rem;
    }
    
    .schedule-table thead th i {
        display: none;
    }
    
    .time-col,
    .time-cell {
        width: 15%;
    }
    
    .team-col,
    .team-cell {
        width: 30%;
    }
    
    .vs-col,
    .vs-cell {
        width: 10%;
    }
    
    .rink-col,
    .rink-cell {
        width: 15%;
    }
    
    .time-cell {
        font-size: 0.85rem;
    }
    
    .team-cell {
        font-size: 0.75rem;
        padding: 0.6rem 0.2rem;
    }
    
    .team-cell .town-name {
        font-size: 0.65rem;
        margin-bottom: 0.1rem;
    }
    
    .team-cell .team-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .vs-badge {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
        padding: 4px;
    }
    
    .rink-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .schedule-card {
        margin: 0 -0.5rem;
    }
}

@media (max-width: 576px) {
    .schedule-table {
        font-size: 0.7rem;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 0.5rem 0.2rem;
    }
    
    .time-cell {
        font-size: 0.75rem;
    }
    
    .team-cell {
        font-size: 0.7rem;
    }
    
    .team-cell .town-name {
        font-size: 0.6rem;
    }
    
    .team-cell .team-name {
        font-size: 0.7rem;
    }
    
    .vs-badge {
        width: 24px;
        height: 24px;
        font-size: 0.55rem;
    }
    
    .rink-badge {
        padding: 3px 6px;
        font-size: 0.65rem;
    }
}

.empty-schedule {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.schedule-legend {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Teams Styles */
.teams-section {
    background: var(--gradient-secondary);
    min-height: 100vh;
    padding-top: 100px; /* Extra space for fixed navbar */
}

/* Teams Stats */
.teams-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.teams-stats.compact {
    padding: 1rem 1.5rem;
}

.stats-section-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.stats-section-header.compact {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.stats-section-header h4 {
    color: var(--primary-white);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-section-header i {
    color: var(--primary-gold);
}

/* Collapsible Section Headers */
.collapsible-section-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.collapsible-section-header:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.collapsible-section-header .collapse-icon {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.collapsible-section-header[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
}

.collapsible-section-header .section-title {
    margin: 0;
}

.collapsible-section-header .badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.7rem;
}

.collapsible-section-header .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.stat-item {
    padding: 1rem;
}

.teams-stats.compact .stat-item {
    padding: 0.75rem 0.5rem;
}

.stat-primary {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.teams-stats.compact .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.stat-featured {
    font-size: 3.5rem;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.teams-stats.compact .stat-featured {
    font-size: 2.75rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-label {
    color: var(--primary-white);
    font-weight: 500;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.team-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

/* Status Badge Styles */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.status-badge i {
    font-size: 0.85rem;
}

.status-active {
    background: #22c55e;
    color: white;
}

.status-waiting {
    background: #3b82f6;
    color: white;
}

.status-pending {
    background: #fbbf24;
    color: #1a1a1a;
}

.status-rejected {
    background: #ef4444;
    color: white;
}

.team-logo i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.team-name {
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-town {
    color: var(--primary-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.team-info {
    padding: 1.5rem;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--primary-white);
}

.info-row i {
    color: var(--primary-gold);
    width: 20px;
}

.empty-teams {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.teams-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.registration-info-card {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 15px;
    color: var(--primary-white);
}

/* Footer */
.footer {
    background: var(--gradient-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px; /* More space for navbar on mobile */
        height: 100vh;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .register-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hockey-puck-animation i {
        font-size: 4rem;
    }
    
    .hockey-puck-animation {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 80px;
    }
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0; /* Remove margins since flexbox gap handles spacing */
        min-width: auto; /* Override min-width on mobile since they're full width */
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 2rem;
    }

    /* Ensure navbar is compact on mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    .navbar-brand {
        font-size: 0.75rem;
        line-height: 1.2;
        max-width: calc(100vw - 110px);
        white-space: nowrap;
        flex-shrink: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .navbar-toggler {
        padding: 0.35rem 0.5rem;
        font-size: 1.1rem;
    }
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        flex-wrap: nowrap;
    }
    /* Mobile payment section adjustments */
    .payment-card {
        padding: 1.5rem;
    }
    .fee-amount .amount {
        font-size: 3.5rem;
    }
    .fee-amount .currency {
        font-size: 2rem;
    }
    .email-box {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .email-box .d-flex {
        display: block !important;
    }
}
    .email-box #paymentEmail {
        font-size: 0.9rem;
        word-break: break-all;
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .email-box .flex-shrink-0:first-child {
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .email-box #copyEmailBtn {
        width: 100%;
        margin-top: 0.75rem;
        display: block;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert styles */
.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--primary-white);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--primary-white);
}

/* Waiting List Styles */
.waiting-list-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.waiting-card {
    position: relative;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding-top: 1rem;
}

.waiting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.waiting-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    white-space: nowrap;
}

.waiting-logo i {
    color: var(--primary-gold);
    opacity: 0.8;
}

.waiting-division {
    background: rgba(251, 191, 36, 0.2);
    color: var(--primary-gold);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.waiting-list-info .alert {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary-white);
}

/* Payment Status Styles */
.payment-status-paid {
    color: #22c55e;
    font-weight: 600;
}

.payment-status-pending {
    color: #fbbf24;
}

.payment-icon-paid {
    color: #22c55e;
    font-size: 1.1rem;
}

.payment-icon-pending {
    color: #fbbf24;
    font-size: 1.1rem;
}