:root {
    --primary-bg: #0a0b10;
    --navbar-bg: rgba(10, 11, 16, 0.9);
    --light-text: #ffffff;
    --gray-text: #9fa3a7;
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-glow: #00d2ff;
    --primary-gradient: linear-gradient(90deg, #00d2ff, #1ce7b4);
    --accent-color: #1ce7b4;
    --card-bg: #12141c;
    --card-border: #2c2e36;
        --bg-color: #0d0d0d;
    --card-bg-color: #1a1a1a;
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --text-color: #e0e0e0;
    --text-muted: #888;
    --input-bg-color: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

body.mobile-menu-active {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0;
    transform: skewX(-15deg);
    background: var(--card-bg);
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
}

.btn span {
    display: inline-block;
    transform: skewX(15deg);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--primary-bg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
    color: var(--light-text);
    padding: calc(0.75rem - 2px) calc(2rem - 2px);
}

.btn:hover {
    transform: skewX(-15deg) scale(1.05);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #bbb;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px; 
    }

    .section-title {
        font-size: 1.6rem; 
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

.animated-divider {
    width: 100%;
    height: 3px;
    background-color: #333;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.animated-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: slide-glow 3s infinite linear;
}

@keyframes slide-glow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* -------------------- Navbar -------------------- */
.navbar {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px dotted var(--accent-color);
    transition: background-color 0.4s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo .logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-desktop-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--light-text);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.user-display-area {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

#logout-btn {
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
}

#logout-btn:hover {
    color: var(--accent-color);
}

.mobile-menu-button {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
}

.nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-bg);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
}

.nav-mobile-menu.open {
    transform: translateX(0);
}

.nav-mobile-menu .nav-link,
.nav-mobile-menu .btn {
    font-size: 1.2rem;
    font-weight: 600;
    width: auto;
    color: var(--light-text);
}

.mobile-menu-close-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-close-button:hover {
    transform: rotate(90deg);
}

.nav-actions .btn {
    display: none;
}

.nav-actions .btn {
    display: block;
}

.nav-desktop-menu {
    display: flex;
}

.mobile-menu-button {
    display: none;
}

@media (max-width: 1000px) {

    .nav-desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-mobile-menu {
        gap: 1rem;
    }

}

@media (max-width: 568px) {

    .nav-actions .btn {
        display: none;
    }
}

/* -------------------- Footer -------------------- */
.footer {
    background-color: var(--card-bg);
    color: var(--light-text);
    padding: 4rem 0 2rem;
    border-top: 2px dotted var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-color);
}

.footer-logo-section {
    flex: 1 1 250px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-links-section,
.footer-contact-section {
    flex: 1 1 150px;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    position: relative;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-glow);
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a,
.footer-contact-list a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.footer-contact-list-item i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-contact-list-item a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.footer-contact-list-item a:hover {
    color: var(--accent-color);
}

.footer-legal-text,
.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
.footer-logo-section {
    flex: 1 1 ;
}
.footer-logo-section,
.footer-links-section,
.footer-contact-section,
.footer-links-list, .footer-contact-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-links-title::after {
    left: 50%;
    width: 50px;
    transform: translateX(-50%);
}


}

/* -------------------------------------------------------------------------- */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-dialog {
    width: 90%;
    max-width: 600px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.banner-text {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--primary-glow);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .cookie-dialog {
        width: 95%;
        padding: 1.5rem;
    }

    .banner-actions {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--light-text);
    border-bottom: 2px dotted var(--accent-color);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
    z-index: -3;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 210, 255, 0.2) 0%,
            rgba(28, 231, 180, 0.2) 50%,
            rgba(255, 100, 150, 0.2) 100%);
    animation: pulseGlow 15s infinite;
    z-index: -2;
}

@keyframes pulseGlow {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(90deg);
    }

    100% {
        filter: hue-rotate(0deg);
    }
}

.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZmlsbD0iI2ZmZmZmZiIgb3BhY2l0eT0iMC4wNSIgZD0iTS0xMC0xMGg3MHY3MGgtNzB6TTAtMTBoNTB2NTBoLTUwIi8+PC9zdmc+');
    background-size: 100px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, #00d2ff, #1ce7b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.social-proof-bar {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(18, 20, 28, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rating,
.join-us {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rating .stars {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.rating-text,
.join-us span {
    color: var(--gray-text);
}

.rating-text strong,
.join-us strong {
    color: var(--light-text);
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0;
    }

    .social-proof-bar {
        margin-top: 2rem;
    }
}

/* -------------------------------------------------------------------------- */
.showcase-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 40px;
    gap: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards 0.5s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.showcase-content .showcase-image {
    position: relative;
    width: 65%;
    overflow: visible;
    padding-bottom: 40%;
    z-index: 2;
}

.showcase-content .showcase-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transform: rotate(-5deg);
    z-index: -1;
    transition: transform 0.4s ease-in-out;
}

.showcase-content .showcase-image:hover::before {
    transform: rotate(0deg);
}

.showcase-content .showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    filter: saturate(1.2) brightness(0.8);
    transition: filter 0.4s ease-in-out;
}

.showcase-content .showcase-img:hover {
    filter: saturate(1.5) brightness(1);
}

.showcase-content .social-proof-bar {
    position: relative;
    width: 40%;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 3;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards 0.5s;
}

.showcase-content .social-proof-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.showcase-content .rating,
.showcase-content .join-us {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.showcase-content .rating .stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.showcase-content .rating-text,
.showcase-content .join-us span {
    color: var(--gray-text);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.showcase-content .rating-text strong,
.showcase-content .join-us strong {
    color: var(--light-text);
    font-weight: 700;
}

@media (max-width: 768px) {
    .showcase-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 2rem;
    }

    .showcase-content .showcase-image {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .showcase-content .showcase-image::before {
        top: -10px;
        left: -10px;
        transform: none;
    }

    .showcase-content .social-proof-bar {
        width: 90%;
        margin-top: -20px;
        text-align: center;
    }

    .showcase-content .social-proof-bar::after {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
.games-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
    border-bottom: 2px dotted var(--accent-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.card-image-container {
    position: relative;
    padding-top: 56.25%;
}

.game-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.game-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
.coaches-section {
    padding: 80px 0 0 0;
    background-color: #1a1a1a;
    color: #fff;
    border-top: 2px dotted var(--accent-color);
}

.coaches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.coach-card {
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 300px;
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.card-image-container {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    height: 100%;
}

.coach-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
}

.csgo {
    background-color: #f7a23c;
}

.lol {
    background-color: #0076a5;
}

.dota2 {
    background-color: #e54b3c;
}

.valorant {
    background-color: #ff4655;
}

.fortnite {
    background-color: #7262ff;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.coach-info {
    flex-grow: 1;
}

.coach-name {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.coach-title {
    font-size: 0.95rem;
    color: #00ffff;
    margin: 5px 0 0;
}

.coach-rating {
    display: flex;
    align-items: center;
    color: #ffcc00;
    font-weight: bold;
}

.coach-rating i {
    margin-right: 5px;
}

.coach-bio {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background-color: #333;
    color: #00ffff;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.coach-price strong {
    font-size: 1.5rem;
    color: #fff;
}

.coach-price span {
    font-size: 0.8rem;
    color: #bbb;
    display: block;
}

.book-now-btn {
    background-color: #00ffff;
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #00e6e6;
}

@media (max-width: 1000px) {
    .coach-card {
        flex-direction: column;
        height: auto;
        align-items: center;
    }

    .card-image-container {
        width: 100%;
        padding-top: 56.25%;
        height: 0;
    }

    .coach-card img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

}

/* -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero-img.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) saturate(1.2);
    transform: scale(1.1);
    transform: scale(1.1) scaleX(-1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.cta-title .highlight-text {
    color: #00ffff;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button-container {
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background-color: #00ffff;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #00e6e6;
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}


/* -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 0 0 80px 0;
    background-color: #1a1a1a;
    color: #fff;
    border-bottom: 2px dotted var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #222;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #00ffff;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.star-rating {
    color: #ffcc00;
    font-size: 1em;
}

.star-rating i {
    margin-right: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: auto;
}

.game-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #00ffff;
    font-size: 0.9em;
    font-style: italic;
}

.game-info i {
    margin-right: 10px;
}

/* -------------------------------------------------------------------------- */
.pricing-section {
    padding:  80px 0;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    border-top: 2px dotted var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:50px;
    align-items: center;
}

.pricing-card {
    background-color: #222;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 2px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured {
    background-color: #2a2a2a;
    border-color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 15px;
    background-color: #00ffff;
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin: 10px 0 5px;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: normal;
    color: #bbb;
}

.plan-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 15px;
}

.feature-item.included i {
    color: #00ff00;
}

.feature-item.excluded i {
    color: #ff0000;
}

.feature-item span {
    font-size: 1rem;
    color: #ccc;
}

.plan-cta {
    margin-top: auto;
}
.plan-cta a::before {
  position: relative;
  z-index: -10;
}


/* -------------------------------------------------------------------------- */
.footer-cta {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background-color: #0d0d0d;
    color: #fff;
    text-align: center;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.aurora-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: aurora-glow 10s infinite alternate;
}

.aurora-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00ffff, #0077ff);
    top: 20%;
    left: 10%;
    animation-delay: 2s;
}

.aurora-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff00ff, #8000ff);
    bottom: 25%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes aurora-glow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 20px);
    }
}

@media (max-width: 768px) {
    .aurora-shape.shape-1 {
    top: 20%;
    left: -50%;
}
    .aurora-shape.shape-2 {
   display: none;
}
}

.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-noise.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 5;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .aurora-shape {
        filter: blur(60px);
    }
}

/* -------------------------------------------------------------------------- */
.contact-page-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.contact-page-section .section-header {
    text-align: start;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #bbb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.contact-details-card,
.contact-form-card {
    background-color: #222;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 3px dotted var(--border-color);
}

.details-title,
.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: #00ffff;
    min-width: 40px;
    text-align: center;
}

.info-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.info-details p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.info-details a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #00e6e6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.submit-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #00ffff;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #00e6e6;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-card,
    .contact-form-card {
        padding: 30px;
    }

    .details-title,
    .form-title {
        font-size: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
.auth-page-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/coach/group2.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.85)), url('/assets/coach/group2.jpeg');
}

.auth-container {
    width: 90%;
    max-width: 1000px;
    background: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    display: grid;
    grid-template-columns:  1fr;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.auth-visual-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    overflow: hidden;
}

.auth-visual-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.6;
    filter: blur(80px);
    transform: scale(1.5);
    animation: glow-pulse 6s infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: scale(1.5) rotate(0deg); opacity: 0.6; }
    100% { transform: scale(1.6) rotate(5deg); opacity: 0.8; }
}

.visual-panel-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.visual-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary-color);
}

.visual-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.auth-form-panel {
    padding: 40px;
    background-color: var(--card-bg-color);
    position: relative;
}

.modal-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.modal-tab {
    flex: 1;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-tab:hover {
    color: var(--primary-color);
}

.modal-tab.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--input-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.form-btn {
margin-top: 1rem;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-form-panel {
        padding: 20px;
    }

    .page-title, .form-title {
        font-size: 1.5rem;
    }
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.modal-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.modal-tab {
    flex: 1;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-tab:hover {
    color: var(--primary-color);
}

.modal-tab.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.input-group{
margin-bottom: 1rem;
}


/* -------------------------------------------------------------------------- */
.legal-page {
    background-color: var(--bg-color-alt); 
    color: var(--text-color);
    padding: 60px 0;
    line-height: 1.6;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/assets/coach/group1.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content-box {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .legal-content-box {
    padding: 10px;
    }
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.legal-section .section-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-list {
    margin-top: 15px;
    margin-bottom: 15px;
    list-style-type: disc;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 8px;
}

.legal-content-box a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content-box a:hover {
    color: var(--primary-dark-color);
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: var(--bg-color-alt);
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background-color: var(--bg-color-light);
}

/* -------------------------------------------------------------------------- */
.booking-page-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(10, 10, 26, 0.85)), url('/assets/coach/group1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-page-content {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.booking-header-panel {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.booking-header-panel .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    color: var(--bg-color);
    border: 0;
}
.booking-header-panel .header-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    max-width: 90%;
}

.booking-header-panel .highlight {
    font-weight: 700;
    color: var(--card-bg-color);
}

.header-icon {
    font-size: 3.5rem;
    color: var(--card-bg-color);
    padding: 15px;
    border-radius: 50%;
}

.booking-form-panel {
    padding: 50px;
}

.booking-form-panel .form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.booking-form-panel .input-group {
    margin-bottom: 30px;
}

.booking-form-panel .input-group label {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.input-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--input-bg-color);
    border: 1px solid var(--norder-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.4s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.input-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.input-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="rgb(0, 255, 255)" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-btn {
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .booking-page-content {
        border-radius: 10px;
        box-shadow: none;
        max-width: 100%;
        width: 100%;
    }
    .booking-form-panel {
        padding: 30px 20px;
    }
    .booking-header-panel {
        padding: 30px 20px;
    }
    .booking-header-panel .page-title {
        font-size: 2rem;
    }
}