/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary-bg: #ffffff;
    --navbar-bg: rgba(255, 255, 255, 0.9);
    --light-text: #0a0b10;
    --gray-text: #505050;
    --border-color: rgba(0, 0, 0, 0.1);
    --primary-glow: #126171;
    --primary-gradient: linear-gradient(90deg, #336772, #126171);
    --accent-color: #126171;
    --card-bg: #f0f0f0;
    --card-border: #d0d0d0;
    --bg-color: #f5f5f5;
    --card-bg-color: #e0e0e0;
    --primary-color: #336772;
    --secondary-color: #583558;
    --text-color: #1a1a1a;
    --text-muted: #888;
    --input-bg-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    font-family: 'Montserrat', 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);
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('/assets/background/body-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.mobile-menu-active {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    transform: none;
    background: var(--card-bg);
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn span {
    display: inline-block;
    position: relative;
    z-index: 2;
    transform: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 3px solid;
    border-image: none;
    border-color: var(--accent-color);
    color: var(--accent-color);
    padding: calc(1rem - 3px) calc(2.5rem - 3px);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.7);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-30deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.btn:hover::before {
    transform: translateX(100%) skewX(-30deg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.section-title {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.section-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.animated-divider {
    width: 100%;
    height: 3px;
    background-color: var(--card-border);
    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, var(--primary-color), transparent);
    animation: slide-glow 3s infinite linear;
}

@keyframes slide-glow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* -------------------------------------------------------------------------- */
.navbar {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 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: 45px;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.1);
}

.nav-desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.user-display-area {
    display: none;
    align-items: center;
    gap: 0.75rem;
    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;
    transition: color 0.3s ease;
}

#logout-btn:hover {
    color: var(--accent-color);
}

.mobile-menu-button {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.75rem;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.mobile-menu-button:hover {
    transform: scale(1.1);
}

.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: 1.25rem;
    z-index: 1001;
}

.nav-mobile-menu.open {
    transform: translateX(0);
}

.nav-mobile-menu .nav-link,
.nav-mobile-menu .btn {
    font-size: 1.4rem;
    font-weight: 700;
    width: auto;
    text-transform: uppercase;
}

.mobile-menu-close-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 2.25rem;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-close-button:hover {
    transform: rotate(90deg) scale(1.1);
}

.nav-actions .btn {
    display: none;
}

.nav-actions .btn {
    display: block;
}

.nav-desktop-menu {
    display: flex;
}

.mobile-menu-button {
    display: none;
}

@media (max-width: 1024px) {
    .nav-desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-actions {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-actions .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-actions .btn-secondary {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
.footer {
    background-color: var(--primary-bg);
    color: var(--gray-text);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    isolation-mode: isolate;
}

.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
    animation: pulse-glow 7s infinite ease-in-out;
    z-index: -1;
    transform: translate(-50%, -50%);
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-links-section-cont {
    display: flex;
    justify-content: space-around;
    gap: 2.5ren;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 220px;
    margin-bottom: 1.2rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 800px;
    text-align: center;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
}

.footer-links-title {
    color: var(--light-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list li a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links-list li a::before {
    content: '\2023';
    color: var(--accent-color);
    font-size: 1.4rem;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

.footer-links-list li a:hover::before {
    transform: translateY(-50%) scale(1.2);
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.footer-contact-list-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact-list-item a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list-item a:hover {
    color: var(--light-text);
}

.footer-legal-text {
    font-size: 0.85rem;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.6;
    margin: 2rem auto 1rem;
    max-width: 900px;
}

.footer-copyright {
    font-size: 0.8rem;
    text-align: center;
    color: var(--accent-color);
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .footer-logo-section {
        grid-column: span 3;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
    }

    .footer-logo-section {
        text-align: center;
        align-items: center;
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
        align-items: center;
    }

    .footer-links-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list li a,
    .footer-contact-list-item {
        justify-content: center;
        padding-left: 0;
    }

    .footer-links-list li a::before {
        display: none;
    }

    .footer-contact-list-item i {
        margin-right: 0.5rem;
    }

    .footer-links-section-cont {
        flex-direction: column;
        gap: 2.5rem;
    }

}

@media (max-width: 480px) {
    .footer-content {
        gap: 2rem;
    }

}

/* -------------------------------------------------------------------------- */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
}

.cookie-dialog {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    max-width: 600px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-content {
    text-align: center;
}

.fa-cookie-bite {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

.fa-cookie-bite:hover {
    transform: scale(1.1);
}

.banner-title {
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.banner-text {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .cookie-dialog {
        padding: 1.5rem;
        margin: 1rem;
    }

    .banner-actions {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    z-index: 1;
    color: var(--light-text);
    overflow: hidden;
    border-bottom: 5px solid var(--accent-color);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: blur(2px);
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate ease-in-out;
    background-image: url('/assets/background/hero-bg.png');
}

@keyframes zoomOut {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.hero-text-content {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
    padding: 40px 20px;
    border-radius: 0 50px 0 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-buttons .btn {
    min-width: 200px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
.showcase-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--accent-color);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
    transition: all 0.5s ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.stars .fas {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light-text);
}

.join-us {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light-text);
}

.join-us strong {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .social-proof-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        justify-content: center;
        align-items: center;
    }

    .rating {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .join-us {
        margin-top: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
.coaches-section {
    padding: 6rem 0 0 0;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.coach-card {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px var(--accent-color);
}

.card-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.card-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover img {
    transform: scale(1.05);
}

.game-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    z-index: 10;
    text-transform: uppercase;
}

.game-tag.csgo {
    background-color: #f7a049;
}

.game-tag.lol {
    background-color: #59739d;
}

.game-tag.dota2 {
    background-color: #a94b4b;
}

.game-tag.valorant {
    background-color: #ff4655;
}

.game-tag.fortnite {
    background-color: #6a5acd;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.coach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.coach-info {
    flex-grow: 1;
}

.coach-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.2rem;
}

.coach-title {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.coach-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFD700;
}

.coach-rating span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
}

.coach-bio {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
width: fit-content;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: var(--accent-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
}

.coach-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.coach-price span {
    font-size: 0.8rem;
    color: var(--gray-text);
    display: block;
}

.book-now-btn {
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* -------------------------------------------------------------------------- */
.games-section {
    padding: 4rem 0 6rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}


@media (max-width: 500px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px var(--accent-color);
}

.card-image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.card-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.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) 100%);
    transition: background 0.3s ease;
}

.game-card:hover .image-overlay {
    background: linear-gradient(to top, rgba(0, 210, 255, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.game-title {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-description {
    font-size: 1.2rem;
    color: var(--accent-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--light-text);
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/background/group4.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate ease-in-out;
    z-index: -2;
}

@keyframes zoomOut {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-bg);
}

.highlight-text {
    background: rgb(255, 196, 0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--primary-bg);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button-container {
    display: flex;
    justify-content: center;
}

.cta-button {
    background: var(--primary-gradient);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.6);
}

.cta-button .fas {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

/* -------------------------------------------------------------------------- */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    row-gap: 3rem;
    column-gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    position: relative;
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(51, 103, 114, 0.4), 0 5px 25px rgba(51, 103, 114, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(51, 103, 114, 0.6), 0 0 30px rgba(51, 103, 114, 0.8);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    background: var(--primary-gradient);
    color: var(--primary-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-item .fas {
    font-size: 1.2rem;
}

.feature-item.included .fas {
    color: var(--accent-color);
}

.feature-item.excluded .fas {
    color: var(--text-muted);
}

.plan-cta {
    margin-top: auto;
}

.btn-primary {
    color: var(--primary-bg);
    box-shadow: 0 5px 20px rgba(51, 103, 114, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(51, 103, 114, 0.7);
}

.btn-secondary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.02);
    }
}

/* -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.user-details {
    text-align: left;
}

.user-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.star-rating {
    color: #ffc107;
}

.star-rating .fas {
    margin-right: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: auto;
}

.game-info .fas {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
.footer-cta {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    color: var(--primary-bg);
    background-color: var(--text-color);
    z-index: 1;
}

.footer-cta .container {
    position: relative;
    z-index: 3;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.aurora-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    animation: aurora-glow 15s infinite alternate ease-in-out;
}

.aurora-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -50px;
    left: -50px;
    animation-delay: 1s;
}

.aurora-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/background/group4.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0.15;
}

@keyframes aurora-glow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(20px, 30px) rotate(10deg) scale(1.05);
    }
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-bg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-buttons .btn-primary {
    background: var(--primary-gradient);
    color: var(--primary-bg);
}

.cta-buttons .btn-secondary {
    background: var(--primary-bg);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* -------------------------------------------------------------------------- */
.booking-page-section {
    padding: 6rem 0;
}

.booking-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

@media (max-width: 992px) {
    .booking-page-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

.booking-header-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 2.5rem;
    border-right: 2px solid var(--accent-color);
}

@media (max-width: 992px) {
    .booking-header-panel {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-color);
    max-width: 450px;
    margin-bottom: 2rem;
}

.highlight {
    font-weight: 700;
    color: var(--accent-color);
}

.header-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.booking-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5rem;
}

@media (max-width: 992px) {
    .booking-form-panel {
        padding-left: 0;
    }
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.input-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--card-border);
    border-radius: 8px;
    background-color: var(--input-bg-color);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 103, 114, 0.2);
}

.message {
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.form-btn {
    margin-top: 1rem;
}

/* -------------------------------------------------------------------------- */
.contact-page-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
}

.contact-details-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2.5rem;
    border-right: 2px solid var(--accent-color);
}

@media (max-width: 992px) {
    .contact-details-card {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

.details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.info-details p,
.info-details a {
    font-size: 1rem;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5rem;
}

@media (max-width: 992px) {
    .contact-form-card {
        padding-left: 0;
    }
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--input-bg-color);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 103, 114, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* -------------------------------------------------------------------------- */
.auth-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 2.5rem;
    max-width: 900px;
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
}

@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5re,;
        margin: 0 1rem;
    }
}

.auth-visual-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2.5rem;
    border-right: 2px solid var(--accent-color);
}

@media (max-width: 992px) {
    .auth-visual-panel {
        padding-right: 0;
        border-right: none;
        border-bottom: 0 ;
        padding-bottom: 0;
        margin-bottom: 0;
        text-align: center;
    }
}

.visual-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-text {
    font-size: 1rem;
    color: var(--gray-text);
}

.auth-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5rem;
}

@media (max-width: 992px) {
    .auth-form-panel {
        padding-left: 0;
    }
}

.modal-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--card-border);
}

.modal-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
    text-align: center;
}

.modal-tab:hover {
    color: var(--text-color);
}

.modal-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; 
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--input-bg-color);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 103, 114, 0.2);
}

.error-message,
.message {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    margin-top: 1rem;
}

.error-message {
    color: #e53e3e;
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
}

/* -------------------------------------------------------------------------- */
.legal-page {
    padding: 4rem 0 6rem 0;
}
.legal-page .container{
    max-width: 1000px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content-box {
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

@media (max-width: 568px) {
.legal-content-box {
    padding: 2rem 1.8rem;
}
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.legal-section .section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.content-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-list li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    position: relative;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.content-list li::before {
    content: "•"; 
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.content-list.ordered li::before {
    content: counter(list-item) "."; /* Use numbers for ordered lists */
    counter-increment: list-item;
    color: var(--accent-color);
    font-weight: bold;
    margin-left: -1.5em;
    width: 1.5em;
}

.content-list.link-list li a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.content-list.link-list li a:hover {
    color: var(--accent-color);
}

/* -------------------------------------------------------------------------- */
/* TABLES                                                                     */
/* -------------------------------------------------------------------------- */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.cookies-table thead th {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}