:root {
    --secondary-color: #639aff;
    --primary-color: #811ef3;
    --background-color: #1a1a2e;
    --text-color: #FFFFFF;
    --accent-color: #FF6B6B;
}

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

::-webkit-scrollbar {
    width: 12px;
    background-color: #1c1c1c;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid #1c1c1c;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

header {
    background-color: #0f0f1a5e;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

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

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

.logo img {
    width: 50px;
    height: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    
}

.nav-links li {
    margin-left: 30px;
    margin-top: 4px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    
}

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

.hero {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/images/hero2.png') no-repeat center top;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content img {
    width: 5rem;
    height: 10rem;
    margin-bottom: -50px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #c231eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #c231eb;
}

.features {
    padding: 100px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card btn {
    margin-top: auto;
    margin-bottom: auto;
}

@media screen and (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}


footer {
    padding-top: 50px;
    background-color: rgba(15, 15, 26, 0.8);
    text-align: center;
}

footer p {
    margin: 10px 0;
}

footer .social-icons {
    margin-top: 60px;
}

footer .social-icons a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq {
    background-color: rgba(255, 255, 255, 0);
    padding: 60px 20px;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--text-color);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    grid-template-columns: 1fr;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    padding: 15px;
    margin: 0;
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.faq-answer {
    max-height: 0px;
    opacity: 0;
    padding: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    opacity: 1;
    padding: 15px;
}
html {
scroll-behavior: smooth;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 2px;
    background-color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.6999999rem;
        max-width: auto;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #0f0f1a5e;
        padding: 20px 0;
    }
    #configurator {
        margin-left: 0;
        margin-right: 0;
    }

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

    .nav-links li {
        margin: 10px auto;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .pricing-container {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }


        .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    nav {
        justify-content: space-between;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 40px;
    }

}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 80%;
}

.team-card:hover {
    box-shadow: 0 8px 15px rgba(139, 139, 139, 0.432);
    opacity: 100%;
    transform: translateY(-3px);
}

.team-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.team-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-card ul li {
    display: flex;
    align-items: center; /* Vertically center content */
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left; /* Optional: Align text properly */
}




/* Team Colors */
.red-raccoons { background-color: #ff6554; }
.orange-otters { background-color: #ffb237; }
.fire-foxes { background-color: #ffda46; }
.green-goats { background-color: #3beb84; }
.cyan-crabs { background-color: #3ad1ff; }
.blue-belugas { background-color: #5a78ff; }
.purple-puffins { background-color: #8239d6; }
.pink-panthers { background-color: #fd37dc; }

/* Responsive Styling */
@media (max-width: 768px) {
    .team-card {
        padding: 15px;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Style for the player list container */
.player-list {
    list-style: none;  /* Remove default bullets */
    padding: 0;
    margin: 0;
}

/* Style for each player item */
.player-item {
    display: flex;
    align-items: center;  /* Aligns image and text vertically centered */
    margin: 10px 0;  /* Adds spacing between players */
}

/* Style for the player heads */
.player-head {
    width: 48px;  /* Set a fixed width */
    height: 48px;  /* Set a fixed height */
    border-radius: 8px;  /* Rounded corners */
    margin-right: 12px;  /* Space between head and name */
    object-fit: cover;  /* Ensures the image doesn't stretch */
}

/* Style for player names */
.player-name {
    font-size: 18px;  /* Adjust name font size */
    color: #fff;  /* Example color; adjust based on your theme */
    
}

.games-section {
    padding: 5rem;
    text-align: center;
    color: var(--text-color);
}

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

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.game-card {
    min-width: 250px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-card .game-logo {
    position: flex;
    top: 20px;
    left: auto;
    right: auto;
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.game-card p {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.locations {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.locations h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px;
}

.map {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-section {
    padding: 5rem 20px;
    text-align: center;
}

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

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

.news-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.news-card p {
    padding: 0 15px 15px;
    flex-grow: 1;
}

.news-card .btn {
    margin: auto;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.times {
    padding: 100px 0;
    margin-bottom: 2rem;
}

.times h2 {
    text-align: center;
    font-size: 1rem;
    color: lightgrey;
}

.times h4 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
}

.times h1 {
    text-align: center;
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
}

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

.time-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.explanation-section {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

.explanation-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.explanation-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.explanation-slide.active {
    display: flex;
    opacity: 1;
}

.explanation-slide .slide-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

.explanation-slide .slide-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.explanation-slide .slide-content {
    max-width: 600px;
    text-align: center;
}

.explanation-slide .slide-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.carousel-controls button {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.carousel-controls button:hover {
    color: var(--secondary-color);
}

.slide-progress {
    width: 200px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s linear;
}

@media screen and (max-width: 768px) {
    .explanation-section h2 {
        font-size: 2rem;
    }

    .explanation-slide .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-progress {
        width: 150px;
    }
}

.our-games-section {
    padding: 5rem 0;
    background-color: rgba(15, 15, 26, 0.8);
    text-align: center;
}

.our-games-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.games-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin: 1rem;
}

.games-wrapper {
    overflow: hidden;
    width: 100%;
}

.games-inner {
    display: flex;
    transition: transform 0.5s ease;
    margin: 1rem;
}

.game-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    height: 400px;
    max-width: 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-card-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.game-card p {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.games-prev-btn,
.games-next-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.games-prev-btn:hover,
.games-next-btn:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 1024px) {
    .game-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .our-games-section h2 {
        font-size: 2rem;
    }

    .game-card {
        flex: 0 0 100%;
    }

    .game-card-logo {
        width: 60px;
        height: 60px;
    }
}