/* ===== CSS Variables & Base Styles ===== */
:root {
    /* Saudi Green Theme */
    --primary: #1a472a;
    --primary-light: #2d6a4f;
    --primary-dark: #0d2818;
    --primary-glow: rgba(45, 106, 79, 0.4);
    
    /* Gold Accents */
    --accent: #c9a227;
    --accent-light: #e6c84d;
    --accent-dark: #a17d1a;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #0a0a0a;
    
    /* Semantic */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    
    /* Typography */
    --font-main: 'Tajawal', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--off-white);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

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

.btn-full {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.logo-sub {
    font-size: 0.75rem;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    opacity: 0.85;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Content ===== */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    color: var(--accent-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

.title-line.highlight {
    color: var(--accent);
    text-shadow: 0 0 60px rgba(201, 162, 39, 0.5);
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Hero Stats ===== */
.hero-stats {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(201, 162, 39, 0.2);
    color: var(--accent-light);
}

.section-tag {
    display: inline-block;
    background: rgba(26, 71, 42, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
}

.section-header.light .section-title {
    color: var(--white);
}

/* ===== About Section ===== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

/* Sambo Types */
.sambo-types {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--border-radius);
    padding: 60px;
    color: var(--white);
}

.types-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.type-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.type-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.type-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== Regulations Section ===== */
.regulations-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ===== Social Updates Section ===== */
.social-updates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26,71,42,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a472a;
}

.social-embed {
    flex: 1;
    overflow: hidden;
}

.instagram-placeholder {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: flex-start;
}

.instagram-placeholder p {
    margin: 0;
    color: #6b7280;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.regulation-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.regulation-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 0 var(--border-radius) 0 100%;
}

.regulation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.regulation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.regulation-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.regulation-content {
    flex: 1;
}

.regulation-content h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.regulation-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.regulation-meta {
    display: flex;
    gap: 12px;
}

.regulation-meta span {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.file-type {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.file-size {
    background: rgba(108, 117, 125, 0.1);
    color: var(--medium-gray);
}

.regulation-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    align-self: flex-start;
}

.regulation-download svg {
    width: 18px;
    height: 18px;
}

.regulation-download:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* ===== Registration Page ===== */
.registration-types {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.type-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.type-card:hover, .type-card.active {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--off-white);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.type-card:hover .type-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.type-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.type-card p {
    color: var(--medium-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
    margin-bottom: 30px;
}

.type-features span {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-form-section {
    padding: var(--section-padding) 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

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

.news-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-card.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ===== Events Section ===== */
.events-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(165deg, var(--primary-dark), var(--primary));
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.events-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-10px);
}

.event-date {
    text-align: center;
    min-width: 100px;
    padding: 20px;
    background: var(--accent);
    border-radius: var(--border-radius);
    color: var(--primary-dark);
}

.event-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 4px;
}

.event-date .year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.event-content {
    flex: 1;
    color: var(--white);
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-badge.international {
    background: rgba(201, 162, 39, 0.3);
    color: var(--accent-light);
}

.event-badge.training {
    background: rgba(40, 167, 69, 0.3);
    color: #90EE90;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.event-content p {
    opacity: 0.8;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Team Section ===== */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.player-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .card-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.card-content {
    padding: 24px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.player-title {
    display: block;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.player-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--primary);
}

/* ===== Registration Section ===== */
.registration-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.type-card.selected {
    border-color: #1a472a;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: white;
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.type-card h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

.type-features {
    text-align: right;
    margin: 20px 0;
}

.type-features span {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.registration-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    margin: 0 0 10px 0;
    font-size: 2rem;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
}

.registration-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #1a472a;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1a472a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.file-upload {
    border: 2px dashed #1a472a;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    background: rgba(26, 71, 42, 0.05);
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-upload-label span:first-child {
    font-size: 2rem;
}

.file-upload input[type="file"] {
    display: none;
}

.terms-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.registration-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.registration-details h4 {
    margin: 0 0 15px 0;
    color: #1a472a;
}

.registration-details p {
    margin: 5px 0;
}

/* ===== Training Section ===== */
.training-programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-card.featured {
    border: 3px solid #1a472a;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: white;
}

.program-card.featured .btn {
    background: white;
    color: #1a472a;
}

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

.program-card h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

.program-features {
    text-align: right;
    margin: 20px 0;
}

.program-features span {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.program-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a472a;
    margin: 20px 0;
}

.program-card.featured .program-price {
    color: #c9a227;
}

/* Training Videos */
.training-videos {
    padding: 80px 0;
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    margin: 0 0 10px 0;
    color: #1a472a;
}

.video-info p {
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

/* Coaches Section */
.coaches-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.coach-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.coach-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a472a;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coach-info {
    padding: 25px;
}

.coach-info h4 {
    margin: 0 0 5px 0;
    color: #1a472a;
    font-size: 1.3rem;
}

.coach-title {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.coach-desc {
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coach-specialties span {
    background: #e9ecef;
    color: #1a472a;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Training Schedule */
.training-schedule {
    padding: 80px 0;
    background: white;
}

.schedule-container {
    margin-top: 50px;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #1a472a;
    background: white;
    color: #1a472a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a472a;
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.schedule-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.schedule-header h4 {
    margin: 0;
    color: #1a472a;
}

.city-badge {
    background: #e9ecef;
    color: #1a472a;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.schedule-times {
    margin-bottom: 20px;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.time-slot:last-child {
    border-bottom: none;
}

.time-slot .day {
    font-weight: 500;
    color: #333;
}

.time-slot .time {
    color: #666;
    font-size: 0.9rem;
}

.schedule-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* Modal Styles */
.modal {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
    color: #1a472a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 25px 30px;
}

.video-player {
    margin-bottom: 20px;
}

.video-placeholder {
    background: #f8f9fa;
    border: 2px dashed #1a472a;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: #666;
}

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

.video-description {
    margin-bottom: 20px;
}

.video-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.program-summary {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.program-summary h3 {
    color: #1a472a;
    margin: 0 0 10px 0;
}

.program-summary .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c9a227;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a472a;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== Achievements Section ===== */
.achievements-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0;
    color: #c9a227;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Medals Gallery */
.medals-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filters .filter-btn {
    padding: 12px 25px;
    border: 2px solid #1a472a;
    background: white;
    color: #1a472a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: #1a472a;
    color: white;
}

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

.medal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.medal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.medal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.medal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medal-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.medal-type {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.medal-type.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.medal-type.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.medal-type.bronze {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
}

.medal-info {
    padding: 20px;
}

.medal-info h4 {
    margin: 0 0 15px 0;
    color: #1a472a;
    font-size: 1.2rem;
}

.medal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

/* Champions Section */
.champions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.champion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.champion-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.champion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a472a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.champion-info {
    padding: 25px;
}

.champion-info h3 {
    margin: 0 0 10px 0;
    color: #1a472a;
    font-size: 1.4rem;
}

.champion-achievements {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.champion-specialty {
    margin-bottom: 20px;
}

.champion-specialty span {
    background: #e9ecef;
    color: #1a472a;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #1a472a;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: auto;
    right: -15px;
    transform: rotate(180deg);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    left: calc(50% + 30px);
    width: calc(50% - 30px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.timeline-year {
    background: #1a472a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: #1a472a;
    margin: 15px 0;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Records Section */
.records-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.record-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.record-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.record-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.record-content h3 {
    color: #1a472a;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.record-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a472a;
    margin-bottom: 10px;
}

.record-stats {
    color: #666;
    font-size: 0.95rem;
}

/* Champion Profile Modal */
.champion-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
}

.profile-details h3 {
    color: #1a472a;
    margin: 0 0 20px 0;
}

.profile-details p {
    margin: 10px 0;
    line-height: 1.6;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.profile-stats .stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.profile-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #1a472a;
    margin-bottom: 5px;
}

.profile-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: right;
    margin-bottom: 24px;
}

.contact-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.social-section h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-icon:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark-gray);
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    gap: 24px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .regulations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .regulations-grid {
        grid-template-columns: 1fr;
    }
    
    .regulation-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .regulation-download {
        align-self: center;
    }
    
    .regulation-meta {
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-row: auto;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .sambo-types {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        min-width: auto;
        width: 100%;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Scroll Down Button ===== */
.scroll-down-btn {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 16px 32px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-down-btn .scroll-text {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.scroll-down-btn .scroll-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 1.5s infinite;
}

.scroll-down-btn .scroll-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(26, 71, 42, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 35px rgba(26, 71, 42, 0.5);
}

.scroll-top svg {
    width: 26px;
    height: 26px;
}

/* ===== Preview Sections ===== */
.about-preview-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.preview-text {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.9;
    margin-bottom: 30px;
}

.preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 71, 42, 0.08);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-dark);
}

.preview-feature .feature-icon {
    font-size: 1.3rem;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-arrow:hover svg {
    transform: translateX(-5px);
}

.preview-image .image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-image .image-placeholder {
    width: 100%;
    aspect-ratio: 1;
}

.preview-image .image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ===== Regulations Preview Section ===== */
.regulations-preview-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.regulations-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== Events Preview Section ===== */
.events-preview-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(165deg, var(--primary-dark), var(--primary));
    position: relative;
}

.events-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.events-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.events-preview-section .section-cta {
    position: relative;
    z-index: 1;
}

/* ===== Responsive for New Sections ===== */
@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .preview-image {
        order: -1;
    }
    
    .regulations-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scroll-down-btn {
        bottom: 120px;
        padding: 12px 24px;
    }
    
    .scroll-down-btn .scroll-text {
        font-size: 0.85rem;
    }
    
    .preview-features {
        justify-content: center;
    }
    
    .regulations-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===== Enhanced Responsive Design ===== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }

    .hero-content {
        max-width: 600px;
    }

    .programs-grid,
    .medals-grid,
    .champions-grid,
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        max-width: 900px;
    }

    .hero-content {
        max-width: 500px;
    }

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

    .programs-grid,
    .medals-grid,
    .champions-grid,
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        left: 60px;
        width: calc(100% - 90px);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-grid,
    .events-preview {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .modal {
        margin: 20px;
        width: calc(100% - 40px);
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .registration-form {
        padding: 20px 15px;
    }

    .form-header {
        padding: 20px 15px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .scroll-down-btn {
        bottom: 100px;
        padding: 10px 20px;
    }

    .preview-feature {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== Enhanced Admin Dashboard Styles ===== */
.welcome-card {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-content h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.welcome-content p {
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.quick-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.welcome-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.stats-overview .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-right: 4px solid #1a472a;
    transition: transform 0.3s ease;
}

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

.stat-card.primary { border-right-color: #1a472a; }
.stat-card.success { border-right-color: #28a745; }
.stat-card.info { border-right-color: #17a2b8; }
.stat-card.warning { border-right-color: #ffc107; }

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: rgba(26, 71, 42, 0.1);
}

.stat-info h3 {
    font-size: 2rem;
    margin: 0 0 5px 0;
    color: #343a40;
}

.stat-info p {
    margin: 0 0 10px 0;
    color: #6c757d;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

.stat-change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.activity-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.activity-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.activity-section h3 {
    margin: 0;
    color: #343a40;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 3px solid #1a472a;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 71, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-content p {
    margin: 0 0 5px 0;
    color: #343a40;
}

.activity-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.quick-actions {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quick-actions h3 {
    margin: 0 0 20px 0;
    color: #343a40;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-card {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #1a472a;
    background: rgba(26, 71, 42, 0.05);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.action-content h4 {
    margin: 0 0 5px 0;
    color: #343a40;
}

.action-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Reports Styles */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.report-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.report-card h3 {
    margin: 0 0 20px 0;
    color: #343a40;
}

.chart-container {
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.region-item:last-child {
    border-bottom: none;
}

.region-count {
    font-weight: 600;
    color: #1a472a;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.metric:last-child {
    border-bottom: none;
}

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

.metric-value.positive {
    color: #28a745;
}

.metric-value.negative {
    color: #dc3545;
}

.metric-value.neutral {
    color: #6c757d;
}

.detailed-reports {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.report-section h3 {
    margin: 0 0 20px 0;
    color: #343a40;
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-right: 30px;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    border-right: 2px solid #e9ecef;
}

.timeline-item:last-child {
    border-right: none;
}

.timeline-marker {
    position: absolute;
    right: -6px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1a472a;
}

.timeline-content {
    margin-right: 30px;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.activity-type {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.activity-type.registration {
    background: #1a472a;
}

.activity-type.news {
    background: #28a745;
}

.activity-type.admin {
    background: #ffc107;
}

.activity-type.event {
    background: #17a2b8;
}

.activity-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.timeline-content p {
    margin: 0 0 5px 0;
    color: #343a40;
}

.activity-user {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

/* Backup Styles */
.backup-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.backup-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.backup-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.backup-card h3 {
    margin: 0 0 10px 0;
    color: #343a40;
}

.backup-card p {
    margin: 0 0 20px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.backup-history {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.backup-history h3 {
    margin: 0 0 20px 0;
    color: #343a40;
}

/* ===== Registration Page Styles ===== */
.registration-types {
    padding: 60px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.type-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.05), rgba(26, 71, 42, 0.02));
}

.type-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}

.type-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.type-card p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: right;
}

.type-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.select-type {
    width: 100%;
    margin-top: 15px;
}

.registration-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--medium-gray);
}

.registration-form .form-section {
    margin-bottom: 40px;
}

.registration-form .form-section h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* Registration Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid var(--light-gray);
}

.modal-header.success {
    background: linear-gradient(135deg, var(--success), #2dd45e);
    color: white;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.registration-details {
    background: var(--off-white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.registration-details h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.registration-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--light-gray);
    display: flex;
    justify-content: center;
}

/* Responsive for Registration */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Athletes Section ===== */
.athletes-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.athlete-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.athlete-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.athlete-image {
    position: relative;
    height: 350px;
}

.athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-medals {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
}

.athlete-info {
    padding: 20px;
    text-align: center;
}

.athlete-info h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.athlete-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

