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

:root {
    --primary-color: #FF3366;
    --secondary-color: #00D4FF;
    --accent-color: #9D4EDD;
    --bg-dark: #0A0A2A;
    --bg-darker: #000000;
    --bg-gradient: #0a0a1a;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.5);
    --gradient-pink-blue: linear-gradient(135deg, #FF3366 0%, #00D4FF 100%);
    --gradient-blue-pink: linear-gradient(135deg, #00D4FF 0%, #FF3366 100%);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-gradient);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #121e46, transparent);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-center {
    text-align: center;
    order: -1;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-size: 0.75rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink-blue);
    transition: width 0.3s ease;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 0.5rem;
}

.user-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.account-links-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.account-link {
    color: #8a56b2;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.account-link:hover {
    color: #a875d4;
}

.icon-link {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.icon-link[aria-label="Shopping cart"] {
    display: none;
}

.icon-link:hover {
    opacity: 0.7;
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

.user-menu-wrapper {
    position: relative;
}

.user-menu-trigger {
    cursor: pointer;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.user-menu-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.user-menu-item:hover {
    background: rgba(255, 51, 102, 0.2);
    color: var(--primary-color);
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.auth-section {
    background: linear-gradient(180deg, #4a2c5a 0%, #2d1b3d 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.auth-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9D4EDD 0%, #FF3366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.4);
}

.auth-logo-circle svg {
    width: 40px;
    height: 40px;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 0;
}

.auth-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #3d2a4d;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form .form-group input:focus {
    outline: none;
    background: #4a3558;
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.3);
}

.auth-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.country-code-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #3d2a4d;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-code-select:hover {
    background: #4a3558;
}

.country-code-select svg {
    width: 16px;
    height: 16px;
}

.phone-input-wrapper input {
    flex: 1;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.password-toggle:hover {
    opacity: 0.7;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.password-requirements {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.password-requirements-title {
    color: #00D4FF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.password-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 0.85rem;
    line-height: 1.8;
}

.password-requirements-list li {
    padding-left: 1.5rem;
    position: relative;
}

.password-requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}

.btn-signup {
    width: 100%;
    padding: 1rem 2rem;
    background: #4a4a4a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-signup:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.reset-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: right;
    display: block;
    transition: color 0.3s ease;
}

.reset-password-link:hover {
    color: var(--secondary-color);
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.btn-create-account {
    background: #4caf50;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-create-account:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.auth-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--secondary-color);
}

.auth-form .recaptcha-notice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

main {
    margin-top: 70px;
    flex: 1;
}

.hero {
    position: relative;
    height: calc(100vh - 70px);
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-slogan {
    font-family: 'Bebas Neue', 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    background: #ff1a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.5);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: #ff3366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.contact-form .btn-primary:hover {
    background: #ff1a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-darker);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-block {
    width: 100%;
}

section {
    padding: 4rem 0;
    scroll-margin-top: 70px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.3));
}

.services {
    background: transparent;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-split {
    display: flex;
    border: 2px solid white;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    min-height: 250px;
}

.service-card-left {
    flex: 1;
    background: #ff3366;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.service-card-left h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: none;
}

.service-card-left p {
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.service-card-right {
    flex: 1;
    background: #281e42;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.illustration-man {
    width: 150px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.service-text-only {
    padding: 2rem 0;
    color: white;
}

.service-text-only h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-transform: none;
    color: white;
}

.service-text-only p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #3C54A5 0%, #EE3C79 100%);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(60, 84, 165, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 84, 165, 0.5);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-transform: none;
}

.service-card-1 {
    background: linear-gradient(135deg, #3C54A5 0%, #EE3C79 100%);
}

.service-card-2 {
    background: linear-gradient(135deg, #EE3C79 0%, #ff3366 100%);
}

.service-card-3 {
    background: linear-gradient(135deg, #ff3366 0%, #3C54A5 100%);
}

.service-card-4 {
    background: linear-gradient(135deg, #3C54A5 0%, #ff3366 100%);
}

.service-card-5 {
    background: linear-gradient(135deg, #EE3C79 0%, #3C54A5 100%);
}

.service-card-6 {
    background: linear-gradient(135deg, #ff3366 0%, #EE3C79 100%);
}

.services-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.btn-learn-more {
    background: #ff3366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-learn-more:hover {
    background: #ff1a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

.service-item {
    padding: 2rem;
    background: rgba(10, 10, 42, 0.5);
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: var(--gradient-pink-blue);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.about-services {
    background: transparent;    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
}

.service-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-illustration-panel {
    background: #FFF8F0;
    border-radius: 20px;
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.2 / 1;
}


.service-section-1 .service-illustration-panel,
.service-section-3 .service-illustration-panel,
.service-section-5 .service-illustration-panel {
    order: 1;
}

.service-section-2 .service-illustration-panel,
.service-section-4 .service-illustration-panel,
.service-section-6 .service-illustration-panel {
    order: 2;
}

.service-detailed-text {
    order: 2;
    padding: 2rem;
}

.service-section-2 .service-detailed-text,
.service-section-4 .service-detailed-text,
.service-section-6 .service-detailed-text {
    order: 1;
}

.service-detailed-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.service-detailed-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.brief-text {
    order: 2;
}

.brief-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.brief-text p {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.illustration-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.phone-illustration {
    width: 200px;
    height: 350px;
    background: var(--secondary-color);
    border-radius: 25px;
    padding: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFF8F0;
    border-radius: 15px;
    position: relative;
    padding: 20px;
}

.court-icon {
    width: 80%;
    height: 60%;
    margin: 10% auto;
    background: var(--secondary-color);
    border-radius: 10px;
    position: relative;
}

.court-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.check-icon {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.check-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.book-btn, .join-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.profile-item {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
}

.profile-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #FFF8F0;
    border-radius: 50%;
}

.person-illustration {
    position: absolute;
    width: 120px;
    height: 150px;
    z-index: 3;
}

.person-1 {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.person-2 {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.person-3 {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.person-illustration::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 30px 30px 10px 10px;
    top: 40px;
    left: 30px;
}

.person-illustration::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFF8F0;
    border-radius: 50%;
    top: 0;
    left: 40px;
}

.cloud {
    position: absolute;
    width: 40px;
    height: 20px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    z-index: 1;
}

.cloud-1 {
    top: 20px;
    left: 20px;
}

.cloud-2 {
    top: 40px;
    right: 60px;
}

.cloud-3 {
    top: 20px;
    left: 20px;
}

.cloud-4 {
    top: 20px;
    right: 40px;
}

.phone-stats {
    width: 180px;
    height: 320px;
}

.profile-circle {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 20px auto 10px;
}

.level-text {
    text-align: center;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.stats-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.stat-box {
    width: 50px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: bold;
}

.graph {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    border-top: none;
    border-left: none;
}

.graph::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, var(--secondary-color), transparent);
    clip-path: polygon(0 100%, 20% 80%, 40% 60%, 60% 70%, 80% 50%, 100% 40%, 100% 100%);
}

.leaderboard-card {
    width: 280px;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.leaderboard-header {
    background: rgba(0, 212, 255, 0.3);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    border-radius: 15px 15px 0 0;
}

.leaderboard-entries {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rank {
    width: 30px;
    height: 30px;
    background: #FFF8F0;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #FFF8F0;
    border-radius: 50%;
    position: relative;
}

.avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.avatar-female::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--secondary-color);
    border-radius: 15px 15px 0 0;
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.bar {
    height: 8px;
    background: #ff3366;
    border-radius: 4px;
    width: 60px;
}

.bar.short {
    width: 40px;
}

.globe-icon {
    position: absolute;
    top: 60px;
    right: 15px;
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
}

.globe-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 2px;
    background: white;
}

.tournament-ticket {
    width: 250px;
    height: 180px;
    background: var(--secondary-color);
    border-radius: 15px;
    position: relative;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.tournament-ticket::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--bg-darker);
    border-radius: 50%;
}

.ticket-text {
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

.racket-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px 30px 10px 10px;
}

.racket-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.ball-icon {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.arrow-up {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid var(--secondary-color);
    transform: rotate(-20deg);
}

.calendar-icon {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.calendar-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 5px 5px 0 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.calendar-day.checked {
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.calendar-day.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-weight: bold;
}

.racket-overlay {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px 40px 10px 10px;
    transform: rotate(-15deg);
}

.racket-overlay::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

.contact {
    background: transparent;
    color: white;
    position: relative;
    min-height: 80vh;
}

.contact-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 400;
}

.contact-description {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    max-width: 100%;
}

.contact-info-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 1rem 0;
}

.contact-info-item {
    text-align: center;
    width: 100%;
}

.contact-info-item p {
    color: white;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hours-chevron {
    width: 16px;
    height: 16px;
    color: white;
    flex-shrink: 0;
}

.contact-button-wrapper {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.contact-badge {
    display: inline-block;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, #9D4EDD 0%, #7B2CBF 30%, #5A189A 60%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.3));
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    line-height: 1.8;
    max-width: 800px;
    font-size: 1.1rem;
}

.contact-info-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    width: 100%;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.chevron {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.btn-get-in-touch {
    display: none;
    background: #ff3366;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(154, 205, 50, 0.3);
}

.btn-get-in-touch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.5);
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #2d1b3d 0%, #1a0f2e 100%);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-form-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.contact-form-slide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #2d1b3d 0%, #1a0f2e 100%);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
}

.contact-form-slide.active {
    opacity: 1;
    pointer-events: all;
}

.contact-form-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1a0f2e;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-form-close:hover {
    background: #2d1b3d;
    opacity: 0.8;
}

.contact-form-close svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-top: 0;
    max-width: 500px;
    width: 100%;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    font-weight: 700;
    text-transform: none;
}

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

.contact-form .form-group label {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 15, 46, 0.8);
    color: white;
    border: 2px solid rgba(255, 51, 102, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
    outline: none;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.file-upload-wrapper {
    width: 100%;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 15, 46, 0.8);
    border: 2px solid rgba(255, 51, 102, 0.4);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
    box-sizing: border-box;
}

.file-upload-label:hover {
    border-color: rgba(255, 51, 102, 0.6);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.file-input-hidden {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.file-upload-button {
    background: rgba(26, 15, 46, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 51, 102, 0.4);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.file-upload-text {
    color: white;
    font-size: 0.9rem;
    flex: 1;
}

.file-info {
    color: white;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: left;
}

.file-count {
    color: rgba(255, 255, 255, 0.8);
}

.recaptcha-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    text-align: center;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.subscribe {
    background: linear-gradient(135deg, rgb(255 0 64 / 69%) 0%, rgb(19 6 149 / 18%) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 51, 102, 0.2);
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
}

.subscribe .container {
    position: relative;
    z-index: 1;
}

.subscribe-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(to right, #3C54A5 0%, #EE3C79 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.3));
}

.subscribe-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.subscribe-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.subscribe-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.subscribe-form input:focus {
    border-color: rgba(255, 51, 102, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
    outline: none;
}

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

.btn-subscribe {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.btn-subscribe:hover {
    background: #ff1a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

.policy-section {
    background: transparent;
    color: white;
    padding: 4rem 0;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #FF3366 0%, #9D4EDD 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.5));
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.policy-main-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.policy-updated {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.policy-intro {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.policy-card {
    background: rgba(26, 15, 46, 0.6);
    border: 2px solid rgba(255, 51, 102, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366 0%, #3C54A5 50%, #EE3C79 100%);
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 102, 0.6);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.policy-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff3366 0%, #3C54A5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.policy-card-icon svg {
    width: 24px;
    height: 24px;
}

.policy-card-content {
    flex: 1;
}

.policy-card-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.policy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.policy-card ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.policy-card li {
    margin-bottom: 0.75rem;
}

.policy-card strong {
    color: white;
    font-weight: 700;
}

.policy-intro {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.policy-card-1 {
    border-color: rgba(255, 51, 102, 0.4);
}

.policy-card-2 {
    border-color: rgba(60, 84, 165, 0.4);
}

.policy-card-3 {
    border-color: rgba(238, 60, 121, 0.4);
}

.policy-card-4 {
    border-color: rgba(255, 51, 102, 0.4);
}

.policy-card-5 {
    border-color: rgba(60, 84, 165, 0.4);
}

.policy-card-1 .policy-card-icon {
    background: linear-gradient(135deg, #ff3366 0%, #EE3C79 100%);
}

.policy-card-2 .policy-card-icon {
    background: linear-gradient(135deg, #3C54A5 0%, #ff3366 100%);
}

.policy-card-3 .policy-card-icon {
    background: linear-gradient(135deg, #EE3C79 0%, #3C54A5 100%);
}

.policy-card-4 .policy-card-icon {
    background: linear-gradient(135deg, #ff3366 0%, #3C54A5 100%);
}

.policy-card-5 .policy-card-icon {
    background: linear-gradient(135deg, #3C54A5 0%, #EE3C79 100%);
}

.policy-item {
    margin-bottom: 2rem;
}

.policy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.policy-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-item ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.email-link {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.features-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.about-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    opacity: 0.8;
}

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

.court-card {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.court-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0.9;
}

.court-info {
    padding: 1.5rem;
}

.court-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.court-info > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.court-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.court-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.event-card {
    background: rgba(26, 15, 46, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: var(--secondary-color);
}

.booking {
    background: rgba(26, 15, 46, 0.6);
}

.booking-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    background: rgba(26, 15, 46, 0.6);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.footer {
    background: #000;
    color: white;
    padding: 2rem 0;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-left {
    width: 100%;
    text-align: center;
}

.site-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    border-radius: 9999px;
    background: linear-gradient(135deg, #EE3C79 0%, #3C54A5 100%);
    padding: 12px;
    box-sizing: border-box;
}

.footer-left p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-right p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-notice {
    background: rgba(10, 10, 42, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid;
    border-image: var(--gradient-pink-blue) 1;
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.2);
}

.cookie-notice h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.cookie-notice p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .navbar {
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }

    .nav-left {
        justify-content: flex-start;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .nav-center {
        order: 0;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .icon-link svg {
        width: 24px;
        height: 24px;
    }

    .hero-slogan {
        font-size: 4.5rem;
        letter-spacing: 5px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-split {
        min-height: 300px;
    }
    
    .service-card-left h3 {
        font-size: 2.5rem;
    }
    
    .service-text-only h3 {
        font-size: 2.5rem;
    }

    .service-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .service-illustration-panel {
        flex-direction: row;
        align-items: center;
    }

    .service-section-1 .service-illustration-panel,
    .service-section-3 .service-illustration-panel,
    .service-section-5 .service-illustration-panel {
        order: 1;
    }

    .service-section-2 .service-illustration-panel,
    .service-section-4 .service-illustration-panel,
    .service-section-6 .service-illustration-panel {
        order: 2;
    }

    .service-detailed-text {
        order: 2;
    }

    .service-section-2 .service-detailed-text,
    .service-section-4 .service-detailed-text,
    .service-section-6 .service-detailed-text {
        order: 1;
    }

    .brief-text {
        order: 1;
        flex: 1;
    }

    .illustration-content {
        order: 2;
        flex: 1;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .subscribe-form {
        max-width: 500px;
    }
    
    .subscribe-title {
        font-size: 3.5rem;
    }

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

@media (min-width: 1024px) {
    .navbar {
        gap: 3rem;
    }

    .nav-left,
    .nav-right {
        gap: 2rem;
    }

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

    .hero-slogan {
        font-size: 4rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

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

    .contact-content {
        flex-direction: row;
    }

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

    .contact-form-wrapper {
        flex: 1;
        max-width: none;
    }

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

    .social-links {
        flex-direction: row;
        gap: 1rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-section {
        gap: 5rem;
    }

    .service-detailed-text h3 {
        font-size: 3rem;
    }

    .brief-text h3 {
        font-size: 2.5rem;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-right {
        align-items: flex-start;
    }
}






