:root {
    --primary-color: #2b2e69;
    --secondary-color: #2b2e69;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --baseball-color: #34AEE6;
    --football-color: #9747FF;
    --hockey-color: #fc9300;
    --soccer-color: #ee2961;
    --lacrosse-color: #30B0C7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Urbanist", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.025em;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-secondary {
    min-height: 60vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -10px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 100px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-btn, .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    margin: 0.5rem;
}

.cta-btn {
    background: var(--accent-color);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #d97706;
}

.cta-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--accent-color);
}

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

/* Sections */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--bg-light);
}

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    width: 70%;
    margin: auto;
    line-height: 55px;
    text-align: center;
}


.section-title-h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    width: 70%;
    margin: auto;
    line-height: 55px;
    text-align: center;
}

.section-desc, .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 17px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.point-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-point h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-point p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Visual Components */
.about-visual {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Sensor Visual */
.sensor-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.sensor-device {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sensor-body {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.sensor-pulse {
    position: relative;
}

.pulse-circle {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-circle::before,
.pulse-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-in-out infinite;
}

.pulse-circle::after {
    animation-delay: 1s;
}

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

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.sensor-indicators {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 5px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.sensor-mount {
    width: 40px;
    height: 20px;
    background: #4a5568;
    border-radius: 0.5rem;
    position: relative;
}

.data-streams {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.data-point {
    background: rgba(43, 46, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Training Visual */
.training-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.training-device {
    position: relative;
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.screen-header {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.metrics-display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.metric {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 15px;
}

.metric-label {
    opacity: 0.7;
}

.metric-value {
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--accent-color), #d97706);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite alternate;
}

@keyframes progress {
    0% { width: 60%; }
    100% { width: 90%; }
}

.sensor-connections {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: pulse 1.5s ease-in-out infinite;
}

.sensor-node {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Features Visual */
.features-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

.showcase-icon {
    font-size: 1.5rem;
}

.showcase-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.measurement-display {
    position: relative;
    width: 160px;
    height: 160px;
}

.measurement-gauge {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-arc {
    position: absolute;
    inset: 0;
    border: 8px solid #e5e7eb;
    border-radius: 50%;
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(-45deg);
}

.gauge-needle {
    position: absolute;
    width: 2px;
    height: 60px;
    background: var(--primary-color);
    top: 20px;
    left: 50%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(45deg);
    animation: gaugeSwing 3s ease-in-out infinite;
}

.gauge-center {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
}

@keyframes gaugeSwing {
    0%, 100% { transform: translateX(-50%) rotate(25deg); }
    50% { transform: translateX(-50%) rotate(65deg); }
}

/* Competition Visual */
.competition-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.leaderboard-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
}

.leaderboard-header {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.leaderboard-entry.first {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.leaderboard-entry.second {
    background: rgba(156, 163, 175, 0.2);
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.leaderboard-entry.third {
    background: rgba(205, 130, 75, 0.2);
    border: 1px solid rgba(205, 130, 75, 0.3);
}

.rank {
    font-weight: 700;
    width: 20px;
}

.name {
    flex: 1;
    text-align: left;
}

.score {
    font-weight: 600;
}

.sensor-target {
    position: relative;
    width: 120px;
    height: 120px;
}

.target-rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.ring.outer {
    inset: 0;
}

.ring.middle {
    inset: 15px;
    border-color: var(--accent-color);
}

.ring.inner {
    inset: 30px;
    border-color: #dc2626;
}

.target-center {
    position: absolute;
    inset: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.impact-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #dc2626;
    border-radius: 50%;
    animation: flash 0.5s ease-in-out;
}

@keyframes flash {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Leaderboard Visual */
.leaderboard-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ranking-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ranking-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--bg-light);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ranking-category.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

.category-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ranking-category h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ranking-category p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* Brain Visual */
.brain-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.brain-device {
    position: relative;
    width: 350px;
    height: 600px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.screen-header {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.challenge-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.question-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.question-text {
    color: white;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option {
    color: white;
    font-size: 15px;
    padding: 10px;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.option.active {
    background: var(--accent-color);
    color: black;
}

.timer-bar {
    width: 100%;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    overflow: hidden;
}

.timer-fill {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #dc2626, var(--accent-color));
    border-radius: 2px;
    animation: timer 5s linear infinite;
}

@keyframes timer {
    0% { width: 100%; }
    100% { width: 0%; }
}

.score-display {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.neural-connections {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.neural-node {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.neural-node::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-in-out infinite;
}

.connection-path {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.connection-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background: rgba(245, 158, 11, 0.8);
    animation: signal 1.5s ease-in-out infinite;
}

@keyframes signal {
    0% { left: -20px; }
    100% { left: 100%; }
}

/* Question Types Visual */
.question-types-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.question-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.question-type-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.question-type-demo.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

.demo-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.question-type-demo span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feedback Visual */
.feedback-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.feedback-screen {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    min-width: 350px;
    height: 600px;
    box-shadow: var(--shadow-lg);
}

.feedback-header {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feedback-types {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feedback-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.feedback-type.correct {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feedback-type.incorrect {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.feedback-type.performance {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feedback-indicator {
    font-weight: 700;
    font-size: 1rem;
}

.feedback-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    text-align: center;
}

.play-button {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Grid Layouts */
.features-grid, .sports-grid, .program-grid, .challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.question-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.scoring-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 0rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0rem;
}

/* Cards */
.feature-card, .sport-card, .program-card, .challenge-category, .scoring-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-card:hover, .sport-card:hover, .program-card:hover, .challenge-category:hover, .scoring-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon, .sport-icon, .category-icon, .scoring-icon, .program-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-title, .sport-card h3, .program-title, .category-header h3, .scoring-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-desc, .sport-card p, .program-desc, .category-desc, .scoring-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.feature-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-status:not(.active) {
    background: rgba(156, 163, 175, 0.2);
    color: #6b7280;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.feature-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Sports Training Specific */
.sports-training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.training-sport {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-sport:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sport-header .sport-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.training-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.training-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.training-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Question List */
.question-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.question-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

/* Challenge Features */
.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 2px solid var(--accent-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.notification-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.notify-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.close:hover {
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Events Section Styles */
.events-section {
    padding: 6rem 0;
    background: transparent;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover::before {
    opacity: 1;
}

.event-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.event-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.event-content {
    padding: 2rem;
}

.event-details {
    margin-bottom: 2rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.event-detail:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #2b2e6994 0%, #2b2e6926 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.4;
}

.event-footer {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.book-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-decoration: none;
    display: inline-block;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:active {
    transform: translateY(0);
}

.event-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.status-available {
    background: rgba(34, 197, 94, 0.2);
    color: #fff;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-limited {
    background: rgba(251, 146, 60, 0.2);
    color: #c2410c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.status-sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Stats */
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    color: #fff;
    margin: auto auto 14px;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

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

.stat-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .new-grid{
        grid-template-columns: 2fr 1fr !important;
    }
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

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

    .features-grid, .sports-grid, .program-grid, .challenge-grid {
        grid-template-columns: 1fr;
    }

    .sports-training-grid {
        grid-template-columns: 1fr;
    }

    .question-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .scoring-features {
        grid-template-columns: 1fr;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .event-header,
    .event-content {
        padding: 1.5rem;
    }

    .event-footer {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }

    .notification-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn, .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .feature-showcase,
    .ranking-display {
        grid-template-columns: repeat(2, 1fr);
    }

    .question-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .feature-card, .sport-card, .program-card, .challenge-category, .scoring-card {
        padding: 2rem;
    }

    .training-sport {
        padding: 1.5rem;
    }

    .sport-header {
        flex-direction: column;
        text-align: center;
    }

    .event-title {
        font-size: 1.25rem;
    }

    .event-detail {
        align-items: flex-start;
        gap: 0.5rem;
    }

    .detail-icon {
        align-self: flex-start;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .feature-showcase,
    .ranking-display,
    .question-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation for cards on scroll */
.event-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.rounded {
    border-radius: 0.5rem;
}

.rounded-lg {
    border-radius: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-visual {
    position: relative;
    /*height: 400px;*/
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensor-pulse {
    position: relative;
}

.pulse-circle {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-circle::before,
.pulse-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-in-out infinite;
}

.pulse-circle::after {
    animation-delay: 1s;
}

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

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}
.programs {
    display: flex
;
    flex-wrap: wrap;
    flex: 4;
    justify-content: space-between;
}

.programs {
    display: flex;
    flex-wrap: wrap;
    flex: 4;
    justify-content: space-between;
}

.program {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    box-shadow: 7px 8px 1px rgb(50 53 110);
    text-align: left;
    transition: transform 0.3s
    ease;
    border: 1px solid rgb(50 53 110);
}

.program:hover {
    transform: translateY(-5px);
}

.program .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.program h3 {
    font-size: 1.5rem;
    color: #333;
    display: flex;
    gap: 9px;
    align-items: center;
}

.program p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* Main Content */
.main-content {
    /*padding: 4rem 0;*/
}

.detail_top{
    display: flex;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    gap: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.event-details {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;

    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}





.event-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.agenda-section {
    margin-top: 3rem;
}

.agenda-timeline {
    position: relative;
    padding-left: 2rem;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.agenda-item {
    position: relative;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    margin-left: 1rem;
    animation: slideLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.agenda-item:nth-child(1) { animation-delay: 0.1s; }
.agenda-item:nth-child(2) { animation-delay: 0.2s; }
.agenda-item:nth-child(3) { animation-delay: 0.3s; }
.agenda-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-color);
}

.agenda-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.agenda-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.agenda-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Sidebar */
.event-sidebar {
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.booking-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    position: sticky;
    top: 6rem;
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    color: #15803d;
    font-weight: 600;
    font-size: 0.875rem;
}

.book-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.book-now-btn:hover::before {
    left: 100%;
}

.security-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-highlights {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.highlights-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(4px);
}

.highlight-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.highlight-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem;
    }

    .event-hero {
        padding: 6rem 0 3rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .event-details {
        padding: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 2rem 0;
    }
}

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

    .hero-stats {
        flex-direction: column;
    }

    .stat-item {
        min-width: auto;
    }

    .event-details {
        padding: 1.5rem;
    }

    .booking-card {
        padding: 1.5rem;
    }
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    color: #fff;
    margin: auto auto 14px;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

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

.stat-value {
    font-size: 1rem;
    font-weight: 600;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.baseball{
    box-shadow: 10px 10px 0px 0px #34AEE6 !important;
    border: 1px solid #34AEE6 !important;
}
.football{
    box-shadow: 10px 10px 0px 0px #9747FF !important;
    border: 1px solid #9747FF !important;
}
.hockey{
    box-shadow: 10px 10px 0px 0px #fc9300 !important;
    border: 1px solid #fc9300 !important;
}
.soccer{
    box-shadow: 10px 10px 0px 0px #ee2961 !important;
    border: 1px solid #ee2961 !important;
}


.Baseball1{
    box-shadow: 10px 10px 0px 0px #ee2961 !important;
    border: 1px solid #ee2961 !important;

}
.Football1{
    box-shadow: 10px 10px 0px 0px #34AEE6 !important;
    border: 1px solid #34AEE6 !important;

}
.Hockey1{
    box-shadow: 10px 10px 0px 0px #9747FF !important;
    border: 1px solid #9747FF !important;

}
.Soccer1{
    box-shadow: 10px 10px 0px 0px #30B0C7 !important;
    border: 1px solid #30B0C7 !important;
}
.Lacrosse1{
    box-shadow: 10px 10px 0px 0px #fc9300 !important;
    border: 1px solid #fc9300 !important;
}

/* Sports Icons */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.sport-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s
    ease;
    animation: bounceIn 1s
    ease-out;
    cursor: pointer;
    color: #33366f;
    font-weight: bold;
    font-size: 18px;
}

.sport-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}
.question-item strong{
    display: block;
}
/* Scoring Section */
.scoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.scoring-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.scoring-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.scoring-card.baseball {
    box-shadow: 10px 10px 0px 0px var(--baseball-color);
    border: 2px solid var(--baseball-color);
}

.scoring-card.football {
    box-shadow: 10px 10px 0px 0px var(--football-color);
    border: 2px solid var(--football-color);
}

.scoring-card.hockey {
    box-shadow: 10px 10px 0px 0px var(--hockey-color);
    border: 2px solid var(--hockey-color);
}

.scoring-card.soccer {
    box-shadow: 10px 10px 0px 0px var(--soccer-color);
    border: 2px solid var(--soccer-color);
}

.scoring-card.lacrosse {
    box-shadow: 10px 10px 0px 0px var(--lacrosse-color);
    border: 2px solid var(--lacrosse-color);
}

.scoring-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.scoring-card.baseball .scoring-icon {
    background: linear-gradient(135deg, var(--baseball-color), #2892c4);
}

.scoring-card.football .scoring-icon {
    background: linear-gradient(135deg, var(--football-color), #7a3ee6);
}

.scoring-card.hockey .scoring-icon {
    background: linear-gradient(135deg, var(--hockey-color), #d17e00);
}

.scoring-card.soccer .scoring-icon {
    background: linear-gradient(135deg, var(--soccer-color), #c4214e);
}

.scoring-card.lacrosse .scoring-icon {
    background: linear-gradient(135deg, var(--lacrosse-color), #28929e);
}

.scoring-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.scoring-features {
    list-style: none;
    padding: 0;
}

.scoring-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 16px !important;
}

.scoring-features li:hover {
    color: var(--text-dark);
    padding-left: 2.5rem;
}

.scoring-features li:last-child {
    border-bottom: none;
}

.scoring-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Feedback Section */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feedback-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feedback-card.baseball {
    box-shadow: 10px 10px 0px 0px var(--soccer-color);
    border: 2px solid var(--soccer-color);
}

.feedback-card.football {
    box-shadow: 10px 10px 0px 0px var(--baseball-color);
    border: 2px solid var(--baseball-color);
}

.feedback-card.hockey {
    box-shadow: 10px 10px 0px 0px var(--football-color);
    border: 2px solid var(--football-color);
}

.feedback-card.soccer {
    box-shadow: 10px 10px 0px 0px var(--lacrosse-color);
    border: 2px solid var(--lacrosse-color);
}

.feedback-card.lacrosse {
    box-shadow: 10px 10px 0px 0px var(--hockey-color);
    border: 2px solid var(--hockey-color);
}

.feedback-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feedback-card.baseball .feedback-icon {
    background: linear-gradient(135deg, var(--soccer-color), #c4214e);
}

.feedback-card.football .feedback-icon {
    background: linear-gradient(135deg, var(--baseball-color), #2892c4);
}

.feedback-card.hockey .feedback-icon {
    background: linear-gradient(135deg, var(--football-color), #7a3ee6);
}

.feedback-card.soccer .feedback-icon {
    background: linear-gradient(135deg, var(--lacrosse-color), #28929e);
}

.feedback-card.lacrosse .feedback-icon {
    background: linear-gradient(135deg, var(--hockey-color), #d17e00);
}

.feedback-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feedback-features {
    list-style: none;
    padding: 0;
}

.feedback-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feedback-features li:hover {
    color: var(--text-dark);
    padding-left: 2.5rem;
}

.feedback-features li:last-child {
    border-bottom: none;
}

.feedback-features li::before {
    content: '🎥';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Visual Enhancement */
.visual-element {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.scoring-card.baseball .visual-element {
    background: var(--baseball-color);
}

.scoring-card.football .visual-element {
    background: var(--football-color);
}

.scoring-card.hockey .visual-element {
    background: var(--hockey-color);
}

.scoring-card.soccer .visual-element {
    background: var(--soccer-color);
}

.scoring-card.lacrosse .visual-element {
    background: var(--lacrosse-color);
}

.feedback-card.baseball .visual-element {
    background: var(--soccer-color);
}

.feedback-card.football .visual-element {
    background: var(--baseball-color);
}

.feedback-card.hockey .visual-element {
    background: var(--football-color);
}

.feedback-card.soccer .visual-element {
    background: var(--lacrosse-color);
}

.feedback-card.lacrosse .visual-element {
    background: var(--hockey-color);
}

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

    .section {
        padding: 4rem 0;
    }

    .scoring-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .scoring-card,
    .feedback-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .scoring-card,
    .feedback-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1.125rem;
    }
}




/* Hero Section */
.hs-hero-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /*background: #2b2e69;*/

    background-repeat: no-repeat;
    /*background-position: bottom center;*/
    background-size: 100% auto;
}

/* Navigation */
.hs-nav {
    position: relative;
    z-index: 100;
    padding: 10px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    background: #2b2e69;
    transition: all 0.3s ease;
}

.hs-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hs-nav-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hs-logo img {
    height: 50px;
    width: auto;
}

.hs-logo {
    vertical-align: middle;
    font-size: 22px;
    font-weight: bold;
    color: #ffff !important;
    display: flex;
    align-items: center;
}

.hs-nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.hs-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: opacity 0.3s ease;
}

.hs-nav-link:hover {
    opacity: 0.8;
}

/* Mobile Menu Button */
.hs-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hs-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hs-hero-title {
    color: white;
    font-size: clamp(2.5rem, 3vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hs-hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hs-hero-description strong {
    font-weight: 700;
}

.hs-cta-button {
    display: inline-block;
    background: white;
    color: #2b2e69;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hs-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Phone Mockups Container */
.hs-phones-container {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 3rem;
}

.hs-phone {
    position: relative;
    flex-shrink: 0;
}

.hs-phone img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hs-phone-left {
    width: clamp(200px, 25vw, 300px);
}

.hs-phone-center {
    width: clamp(280px, 35vw, 400px);
}

.hs-phone-right {
    width: clamp(200px, 25vw, 300px);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hs-phone-left,
    .hs-phone-right {
        /*display: none;*/
    }

    .hs-phone-center {
        width: clamp(300px, 60vw, 450px);
    }

    .hs-phones-container {
        padding-bottom: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hs-hero-wrapper {
        min-height: 80vh;
        background-size: 150% auto;
        background-position: top center;

    }

    .hs-phone-left {
        margin: auto;
        display: none;
    }

    .hs-phone-center {
        margin: auto;
    }

    .hs-phone-right {
        margin: auto;
        display: none;
    }

    .hs-nav {
        padding: 1rem 1.5rem;
    }

    .hs-nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #2b2e69;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .hs-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hs-nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hs-mobile-menu-btn {
        display: block;
    }

    .hs-logo img {
        height: 45px;
    }

    .hs-hero-content {
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .hs-hero-title {
        margin-bottom: 1rem;
        font-size: 2.25rem;
    }

    .hs-hero-description {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .hs-phones-container {
        padding: 0 1.5rem;
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hs-phone-center {
        width: clamp(280px, 75vw, 380px);
    }
}

@media (max-width: 480px) {
    .hs-hero-wrapper {
        min-height: 75vh;
        background-size: 200% auto;
        background-position: top center;
    }

    .hs-nav {
        padding: 0.875rem 1rem;
    }

    .hs-logo img {
        height: 38px;
    }

    .hs-hero-content {
        padding: 1rem 1rem 0.5rem;
    }

    .hs-hero-title {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
        line-height: 1.15;
    }

    .hs-hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .hs-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hs-phone-center {
        width: 85%;
        max-width: 300px;
    }

    .hs-phones-container {
        margin-top: 1rem;
        padding: 0 1rem;
        padding-bottom: 1rem;
        display: block;
    }
}

@media (max-width: 360px) {
    .hs-hero-wrapper {
        min-height: 70vh;
    }

    .hs-hero-title {
        font-size: 1.625rem;
    }

    .hs-hero-description {
        font-size: 0.85rem;
    }

    .hs-phone-center {
        width: 90%;
        max-width: 260px;
    }
}


















.events-list-section {
    /*padding: 6rem 0 3rem;*/
    min-height: 100vh;
    background: var(--bg-light);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    /*border-radius: 0 0 2rem 2rem;*/
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.event-card {
    background: white;
    box-shadow: 10px 10px 0px 0px #52547b !important;
    border: 1px solid #52547b;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.event-status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.event-status-badge.ongoing {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-info-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.event-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2e69;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.view-leaderboard-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 16px;
    color: white;
    font-family: "Urbanist", sans-serif;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.view-leaderboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}











.leaderboard-section {
    /*padding: 6rem 0 3rem;*/
    min-height: 100vh;
    background: #fff;
    padding-bottom: 30px
}

.leaderboard-header-section {
    text-align: center;
    color: white;
    padding: 2rem 0 3rem;
}

.back-btn {
    position: absolute;
    top: 6rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.leaderboard-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.leaderboard-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-family: "Urbanist", sans-serif;
    gap: 1rem;
    margin: 1rem auto 1rem;
    max-width: 900px;
    padding: 0 2rem;
}

.filter-tab {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #2b2e69;
    color: #2b2e69;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-tab:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: white;
    color: #ee2961;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box {
    max-width: 600px;
    margin: 0 auto 1rem;
    padding: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid #2b2e69;
    font-family: "Urbanist", sans-serif;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.leaderboard-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.3);
}

.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.soccerP {
    box-shadow: 2px 2px 0px 0px #ee2961 !important;
    border: 1px solid #ee2961 !important;
}
.Hockey1P {
    box-shadow: 2px 2px 0px 0px #9747FF !important;
    border: 1px solid #9747FF !important;
}
.elseP{
    border: 1px solid gray !important;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-radius: 8px;
    background: #fff ;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.leaderboard-entry:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: #ee2961;
}

.entry-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ee2961;
    width: 50px;
    text-align: center;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ee2961, #c4214e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.player-event {
    font-size: 0.875rem;
    color: var(--text-light);
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Medal styles */
.leaderboard-entry.first {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.leaderboard-entry.first .rank,
.leaderboard-entry.first .player-name,
.leaderboard-entry.first .score {
    color: white;
}

.leaderboard-entry.first .player-event {
    color: rgba(255, 255, 255, 0.9);
}

.leaderboard-entry.second {
    background: linear-gradient(135deg, #a0aec0, #718096);
    color: white;
    box-shadow: 0 4px 20px rgba(160, 174, 192, 0.4);
}

.leaderboard-entry.second .rank,
.leaderboard-entry.second .player-name,
.leaderboard-entry.second .score {
    color: white;
}

.leaderboard-entry.second .player-event {
    color: rgba(255, 255, 255, 0.9);
}

.leaderboard-entry.third {
    background: linear-gradient(135deg, #cd824b, #a0522d);
    color: white;
    box-shadow: 0 4px 20px rgba(205, 130, 75, 0.4);
}

.leaderboard-entry.third .rank,
.leaderboard-entry.third .player-name,
.leaderboard-entry.third .score {
    color: white;
}

.leaderboard-entry.third .player-event {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .leaderboard-section {
        /*padding: 5rem 0 2rem;*/
    }

    .back-btn {
        top: 5rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .filter-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }

    .leaderboard-card {
        padding: 1.5rem;
    }

    .leaderboard-entry {
        padding: 1rem;
    }

    .rank {
        font-size: 1.25rem;
        width: 40px;
    }

    .player-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .player-name {
        font-size: 1rem;
    }

    .score {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .entry-left {
        gap: 0.5rem;
    }

    .player-info {
        /*display: none;*/
    }

    .leaderboard-entry {
        padding: 0.875rem;
    }
}






.player-details-section {
    /*padding: 6rem 0 3rem;*/
    min-height: 100vh;
    background: var(--bg-light);
}

.player-hero {
    background: linear-gradient(135deg, #2b2e69, #3c3f7c);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.back-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.player-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.player-name-large {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.player-event-name {
    font-size: 1.125rem;
    opacity: 0.95;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 30px
}

.details-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.section-title-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: #9747FF;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.stat-card {
    /*background: linear-gradient(135deg, #30B0C7, #28929e);*/
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 22px;
    color: #fff;
    text-transform: unset;
    letter-spacing: 0;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 35px;
    font-weight: 700;
    line-height: 39px;
}

.performance-details {
    margin-top: 2rem;
}

.performance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ee2961, #c4214e);
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: white;
    box-shadow: var(--shadow-sm);
}

.performance-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.performance-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.performance-icon {
    font-size: 1.75rem;
}

.performance-label {
    font-size: 22px;
    font-weight: 600;
    opacity: 0.95;
}

.performance-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Orange Timer Card */
.performance-item.timer {
    background: linear-gradient(135deg, #fc9300, #d17e00);
}

/* Purple Date Card */
.performance-item.date {
    background: linear-gradient(135deg, #9747FF, #7a3ee6);
}

.sidebar-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.achievement-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.achievement-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .player-details-section {
        /*padding: 5rem 0 2rem;*/
    }

    .back-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .player-hero {
        padding: 2.5rem 1rem;
    }

    .player-avatar-large {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .player-name-large {
        font-size: 2rem;
    }

    .content-grid {
        padding: 0 1rem;
    }

    .details-card,
    .sidebar-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .performance-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .performance-left {
        width: 100%;
    }

    .performance-value {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .section-title-main {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .performance-item {
        padding: 1.25rem;
    }

    .performance-value {
        font-size: 1.25rem;
    }
}









