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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #0f172a;
    color: #fff;
    line-height: 1.6;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo svg {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease;
}

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

.header-brand {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-flag {
    font-size: 24px;
}

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

.burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: #10b981;
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: #1e293b;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s;
    background: #0f172a;
}

.mobile-nav-link:hover {
    background: #10b981;
    color: #fff;
    transform: translateX(8px);
}

/* Hero Cover */
.hero-cover {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Profile Section */
.profile-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.profile-card {
    background: #1e293b;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.logo-square {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-url {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 15px;
    word-break: break-all;
}

.contact-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-whatsapp {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #4b5563;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-contact {
    flex: 1;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.profile-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #1e293b;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669, #047857);
}

/* About Us Section */
.about-us-section {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.about-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Milestones Section New */
.milestones-section-new {
    padding: 60px 0;
    background: #0f172a;
}

.milestones-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 40px 32px;
}

.milestone-small-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.milestone-heading {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.milestone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.milestone-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.milestone-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

/* What We Do Section */
.what-we-do-section {
    padding: 60px 0;
    background: #0f172a;
}

.what-we-do-header {
    background: #1e293b;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.wwd-small-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.wwd-heading {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.wwd-description {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
}

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

.wwd-feature-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.wwd-feature-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.wwd-icon {
    margin-bottom: 16px;
}

.wwd-icon svg {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.wwd-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.wwd-feature-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0 40px;
    text-align: center;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6b7280;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-text {
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto;
}

/* Milestones */
.milestones-section {
    padding: 40px 0;
}

.milestones-box {
    background: #1e293b;
    border-radius: 24px;
    padding: 40px 32px;
}

.milestone-label {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.milestone-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

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

.stat-num {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: #9ca3af;
}

/* Features Section */
.features-section {
    padding: 40px 0 60px;
}

.features-intro {
    margin-bottom: 40px;
}

.section-label-sm {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.section-title-md {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-text-sm {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

.features-intro {
    background: #1e293b;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 32px;
}

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

.feature-box {
    background: #1e293b;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    background: #334155;
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-icon svg rect:first-of-type {
    fill: url(#featureGradient);
}

.feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

.feature-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Upcoming Events Section */
.upcoming-events {
    padding: 80px 0;
    background: #0f172a;
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.event-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.event-tab-btn {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #334155;
    border-radius: 10px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.event-tab-btn.active {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.event-tab-btn:hover:not(.active) {
    border-color: #10b981;
    color: #10b981;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card-link {
    text-decoration: none;
    display: block;
}

.event-card-main {
    background: #1e293b;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.event-card-main:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.event-main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.event-match-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    line-height: 1.4;
}

.event-date-badge {
    background: #334155;
    color: #10b981;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.event-details-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-teams-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.team-name {
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
}

.vs-text {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.event-meta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.event-time-text {
    font-size: 14px;
    color: #94a3b8;
}

.event-league-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.event-venue-text {
    font-size: 14px;
    color: #94a3b8;
}

.event-tvs-text {
    font-size: 13px;
    color: #64748b;
}

.event-price-text {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
    margin-top: 4px;
}

/* Venues Section */
.venues-section-main {
    padding: 80px 0;
    background: #1e293b;
}

.venues-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.venue-card-main {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.venue-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.venue-image-box {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.venue-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-emoji {
    font-size: 56px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.venue-card-main:hover .venue-img {
    transform: scale(1.05);
}

.venue-info-box {
    padding: 20px;
}

.venue-name-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.venue-location-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.venue-features-text {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Sports Tags Sections */
.sports-tags-section,
.leagues-tags-section,
.usa-sports-section {
    padding: 80px 0;
    background: #0f172a;
}

.leagues-tags-section {
    background: #1e293b;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sport-tag-btn {
    background: #1e293b;
    color: #94a3b8;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.sport-tag-btn:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-2px);
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.leagues-tags-section .sport-tag-btn {
    background: #0f172a;
}

.usa-sports-section .sport-tag-btn {
    background: #1e293b;
}

/* Page Header Section */
.page-header-section {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.page-breadcrumb a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: #14b8a6;
}

.page-breadcrumb span {
    color: #64748b;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Events Grid Section */
.events-grid-section {
    padding: 80px 0;
    background: #0f172a;
}

/* Venues Page Section */
.venues-page-section {
    padding: 80px 0;
    background: #0f172a;
}

.venue-stats {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #334155;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #0f172a;
}

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

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 17px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #14b8a6);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon-circle {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    transition: all 0.3s;
    word-break: break-all;
}

.contact-link:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #14b8a6;
    transform: translateX(4px);
}

.contact-link svg {
    transition: transform 0.3s;
}

.contact-link:hover svg {
    transform: translateX(4px);
}

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

.contact-address {
    text-align: center;
    margin-top: 20px;
}

.contact-address p {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 6px;
    line-height: 1.6;
}

.contact-address p:first-child {
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 80px;
    background: #0f172a;
    min-height: 100vh;
}

.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #64748b;
}

.policy-breadcrumb a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s;
}

.policy-breadcrumb a:hover {
    color: #14b8a6;
}

.policy-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.policy-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #1e293b;
}

.policy-content {
    color: #94a3b8;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1e293b;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.policy-content ul {
    margin: 16px 0 24px 24px;
    list-style: none;
}

.policy-content ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.policy-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.policy-content strong {
    color: #fff;
    font-weight: 600;
}

.policy-content a {
    color: #10b981;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.policy-content a:hover {
    color: #14b8a6;
    border-bottom-color: #14b8a6;
}

.policy-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.policy-content table th {
    background: #1e293b;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    border: 1px solid #334155;
}

.policy-content table td {
    padding: 16px;
    border: 1px solid #334155;
    color: #94a3b8;
}

.policy-content table tr:nth-child(even) {
    background: #1e293b;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #1f2937;
}

.footer-links {
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

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

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

.footer-links span {
    color: #4b5563;
    margin: 0 8px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 18px;
    font-weight: 700;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    color: #6b7280;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 400px;
    text-align: center;
    padding: 50px 40px;
}

.success-content {
    animation: scaleIn 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulse 0.6s ease;
}

.success-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.success-message {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .header-flag {
        font-size: 24px;
    }

    .stats-grid,
    .milestone-stats,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .milestone-number {
        font-size: 40px;
    }

    .about-title,
    .milestone-heading,
    .wwd-heading,
    .contact-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .policy-title {
        font-size: 32px;
    }

    .policy-content h2 {
        font-size: 24px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .event-card-main {
        padding: 20px;
    }

    .event-main-info {
        flex-direction: column;
        gap: 12px;
    }

    .event-date-badge {
        align-self: flex-start;
    }

    .event-match-title {
        font-size: 15px;
    }

    .venues-grid-main {
        grid-template-columns: 1fr;
    }

    .tags-wrapper {
        gap: 10px;
    }

    .sport-tag-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .profile-card,
    .registration-form-card,
    .milestones-box,
    .features-intro,
    .contact-grid {
        padding: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-num {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .profile-name {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-cover {
        height: 300px;
    }

    .contact-btns {
        flex-direction: column;
    }

    .btn-whatsapp {
        width: 100%;
    }
}

@media (max-width: 500px) {
        .header-flag {
        display: none;
    }
}