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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 4px solid #dc2626;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    color: #dc2626;
    font-weight: 900;
    font-size: 2.25rem;
    letter-spacing: -0.05em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-underline {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ef4444;
    transition: width 0.3s;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    color: white;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #ef4444;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    background-color: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.mobile-menu.hidden {
    display: none;
}

.hidden {
    display: none;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #ef4444;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: black;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-background svg {
    position: absolute;
    stroke: #dc2626;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.circle-1 {
    top: 5rem;
    left: 2.5rem;
}

.circle-2 {
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 700ms;
}

.circle-3 {
    top: 50%;
    left: 33%;
    animation-delay: 500ms;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-logo {
    color: #dc2626;
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

@media (min-width: 640px) {
    .hero-logo {
        font-size: 6rem;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        font-size: 8rem;
    }
}

.hero-logo-underline {
    height: 0.375rem;
    background: linear-gradient(to right, transparent, #dc2626, transparent);
}

.hero-title {
    color: white;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}

.btn-white {
    background-color: white;
    color: #dc2626;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.btn-primary-full {
    background-color: #dc2626;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-primary-full:hover:not(:disabled) {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.btn-primary-full:disabled {
    background-color: #16a34a;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateX(-50%) translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.mouse-dot {
    width: 0.375rem;
    height: 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.mission {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #dc2626;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.icon-circle svg {
    color: white;
}

.icon-circle-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #dc2626;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.icon-circle-white svg {
    color: white;
}

.icon-circle-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.icon-circle-light svg {
    color: white;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-white {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title-white {
        font-size: 3rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #dc2626;
    margin: 0 auto;
}

.section-divider-white {
    width: 6rem;
    height: 0.25rem;
    background-color: white;
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 1.5rem auto 0;
}

.mission-content {
    max-width: 64rem;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.5rem;
    color: #1f2937;
    text-align: center;
    line-height: 1.625;
    font-weight: 500;
}

@media (min-width: 640px) {
    .mission-text {
        font-size: 1.875rem;
    }
}

.about {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.625;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.3s;
    border-top: 4px solid #dc2626;
}

.stat-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.stat-icon {
    color: #dc2626;
    margin: 0 auto 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
}

.etymology {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #111827, black);
    color: white;
}

.etymology-intro {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 2rem auto 0;
}

.highlight-red {
    font-weight: 700;
    color: #ef4444;
}

.italic {
    font-style: italic;
}

.etymology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .etymology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.etymology-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s;
}

.etymology-card:hover {
    border-color: #dc2626;
    transform: scale(1.05);
}

.etymology-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.etymology-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.etymology-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.etymology-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.375;
}

.etymology-example {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    border-left: 4px solid #dc2626;
}

.etymology-example p {
    color: #d1d5db;
    font-style: italic;
}

.programs {
    padding: 5rem 0;
    background-color: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.program-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    border-top: 4px solid #dc2626;
}

.program-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: scale(1.05);
}

.program-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background-color: #dc2626;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon svg {
    color: white;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.program-description {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.program-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-features li {
    display: flex;
    align-items: center;
    color: #374151;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #dc2626;
    border-radius: 9999px;
    margin-right: 0.75rem;
}

.program-features span {
    font-weight: 500;
}

.partnership {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
}

.partnership-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.partnership-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .partnership-title {
        font-size: 3rem;
    }
}

.partnership-text {
    font-size: 1.25rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .partnership-text {
        font-size: 1.5rem;
    }
}

.partnership-subtext {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(254, 202, 202);
}

.contact {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-banner {
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-banner-icon {
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-banner p {
    color: #1f2937;
    line-height: 1.625;
}

.contact-form {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2.5rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group textarea {
    resize: none;
}

.footer {
    background-color: black;
    color: white;
    padding: 3rem 0;
    border-top: 4px solid #dc2626;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.625;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links button {
    color: #9ca3af;
    transition: color 0.3s;
    text-align: left;
}

.footer-links button:hover {
    color: #ef4444;
}

.footer-impact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
}

.footer-heart {
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-impact p {
    line-height: 1.625;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 0;
    }
}

.footer-made {
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.footer-heart-small {
    color: #dc2626;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-link.active {
    color: #ef4444;
}

.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom right, #111827, black);
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 4rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .page-subtitle {
        font-size: 1.5rem;
    }
}

.tournaments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tournaments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tournament-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    border-top: 4px solid #dc2626;
}

.tournament-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.tournament-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.tournament-date {
    flex-shrink: 0;
    background-color: #dc2626;
    color: white;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.tournament-info {
    flex: 1;
}

.tournament-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.tournament-location {
    color: #6b7280;
    font-size: 0.875rem;
}

.tournament-description {
    color: #374151;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.tournament-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.tournament-detail {
    color: #374151;
    font-size: 0.875rem;
}

.tournament-detail strong {
    color: #111827;
    margin-right: 0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ef4444;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    border-left: 4px solid #dc2626;
}

.location-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.location-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    background-color: #dc2626;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-info {
    flex: 1;
}

.location-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.location-address {
    color: #6b7280;
    font-size: 0.875rem;
}

.location-description {
    color: #374151;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.location-detail {
    color: #374151;
    font-size: 0.875rem;
}

.location-detail strong {
    color: #111827;
    margin-right: 0.5rem;
}

.policy-content {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.policy-intro {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.policy-section {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.policy-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #dc2626;
}

.policy-text {
    color: #374151;
    line-height: 1.75;
}

.policy-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-text h3:first-child {
    margin-top: 0;
}

.policy-text p {
    margin-bottom: 1rem;
}

.policy-text ul, .policy-text ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.75;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.policy-text strong {
    color: #111827;
    font-weight: 700;
}

.waiver-intro {
    background-color: #fef2f2;
    padding: 1rem;
    border-left: 4px solid #dc2626;
    margin-bottom: 1.5rem;
}

.waiver-box {
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 1.5rem;
}

.waiver-box h3 {
    margin-top: 0 !important;
}

.waiver-note {
    font-style: italic;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.contact-box {
    background-color: #f9fafb;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.cta-box h3 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.btn-login {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgb(220 38 38 / 0.2);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(220 38 38 / 0.3);
    background: linear-gradient(to bottom right, #b91c1c, #991b1b);
}

.mobile-login-link {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white !important;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.login-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 8rem 0 4rem;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.login-box {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

@media (max-width: 640px) {
    .login-box {
        padding: 2rem;
    }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.75rem;
}

.login-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #16a34a;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.auth-tab:hover {
    color: #dc2626;
}

.auth-tab.active {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

.auth-form {
    animation: fadeIn 0.3s ease-in;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-label svg {
    color: #dc2626;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    background-color: white;
    box-shadow: 0 0 0 3px rgb(220 38 38 / 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.form-checkbox label a {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 600;
}

.form-checkbox label a:hover {
    color: #b91c1c;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.form-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f0f9ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: start;
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.5;
}

.form-info svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.625;
}

.dashboard-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 8rem 0 3rem;
    color: white;
}

.dashboard-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.user-name {
    color: #fef2f2;
}

.dashboard-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-welcome {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dashboard-content {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2.5rem;
    }
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header-content svg {
    color: #dc2626;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.card-body {
    padding: 1.5rem;
}

.announcement-item {
    padding: 1.25rem;
    border-left: 4px solid #dc2626;
    background-color: #fef2f2;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.announcement-item:last-child {
    margin-bottom: 0;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.announcement-date {
    font-size: 0.875rem;
    color: #6b7280;
    white-space: nowrap;
}

.announcement-text {
    color: #374151;
    line-height: 1.625;
}

.teams-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 6px -1px rgb(220 38 38 / 0.1);
    transform: translateY(-2px);
}

.team-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.team-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.team-league {
    font-size: 0.875rem;
    color: #6b7280;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.team-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.team-link {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.team-link:hover {
    color: #b91c1c;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.schedule-item:hover {
    border-color: #dc2626;
    box-shadow: 0 2px 4px 0 rgb(220 38 38 / 0.1);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    color: white;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    min-width: 4rem;
    flex-shrink: 0;
}

.schedule-day {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.schedule-month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.schedule-details {
    flex: 1;
}

.schedule-teams {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.schedule-team {
    font-weight: 700;
    color: #111827;
}

.schedule-vs {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.schedule-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-time,
.schedule-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.schedule-time svg,
.schedule-location svg {
    color: #dc2626;
}

@media (max-width: 640px) {
    .schedule-item {
        flex-direction: column;
    }

    .schedule-date {
        align-self: flex-start;
    }
}

.dashboard-alerts {
    border-top: 4px solid #f59e0b;
}

.alert-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.alert-item:last-child {
    margin-bottom: 0;
}

.alert-warning {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.alert-info {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.alert-success {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-warning .alert-icon {
    color: #f59e0b;
}

.alert-info .alert-icon {
    color: #3b82f6;
}

.alert-success .alert-icon {
    color: #10b981;
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.alert-content p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.alert-action {
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    transition: all 0.3s;
}

.alert-action:hover {
    color: #b91c1c;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    color: #374151;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.quick-link:hover {
    background-color: #fef2f2;
    color: #dc2626;
}

.quick-link svg {
    color: #dc2626;
}

.empty-state {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
    font-style: italic;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
