/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
}
 html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0px;                      
  background: transparent;          
}

/* Header */
.header {
    background: #000000;
    padding: 1.5rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    max-width: 200px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #aaaaaa;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active {
    color: #ff6b6b;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b6b;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.4rem;
    font-style: normal;
}

.social-icons a:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('../img/site-background.png') center/cover no-repeat;
    padding: 150px 3rem 80px;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4rem; */
    align-items: center;
}

.hero-phones {
    position: relative;
    height: 600px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.phone-img {
    position: absolute;
    width: 440px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.phone-2 {
    right: 0;
    top: 50px;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 900;
    color: #EF4B4B;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-btn {
    display: block;
}

.app-btn img {
    height: 90px;
    width: auto;
    transition: transform 0.3s;
}

.app-btn:hover img {
    transform: translateY(-3px);
}

.sports-logos {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-logo {
    height: 60px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.sport-logo:hover {
    opacity: 1;
}

/* Marketplace Section */
.marketplace-section {
    background: #000000;
    padding: 100px 3rem;
}

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

.marketplace-image {
    position: relative;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../img/Group-1792.webp') center/cover no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
}

.marketplace-image h2 {
    /* color: #ffffff; */
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    padding: 2rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.marketplace-image img {
    display: none;
}

.marketplace-content {
    /* color: #ffffff; */
    vertical-align: middle;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    /* color: #ffffff; */
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Partners Section */
.partners-section {
    background: #000000;
    padding: 50px 3rem;
}

.partners-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
}

.partners-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.partner-card {
    background: #000000;
    padding: 2.5rem;
    text-align: center;
}

.partner-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.partner-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer {
    background: #000000;
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo img {
    max-width: 200px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ff6b6b;
}

.footer-column p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.footer-bottom p {
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.8rem !important;
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .phone-1 {
    left: none;
    top: none;
    z-index: none;
    }
    .header {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .marketplace-container {
        gap: 2rem;
    }

    .features-grid {
        gap: 2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: #000000;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem;
        color: #ff6b6b;
    }
    .nav-links a.active {
    color: #ffffff;               
    background-color: #ff6b6b;     
    border-radius: 5px;         
    padding: 0.5rem 1rem;         
    transition: all 0.3s ease;    
}
   
    .phone-1{
        left: none;
        top: none;
        z-index: none;
    }

    .nav-links a.active::after {
        display: none;
    }

    /* .social-icons {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        gap: 2rem;
        z-index: 1000;
    } */

    .social-icons {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 2rem;
    z-index: 1000;
}

    .social-icons.active {
        display: flex;
    }
    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-phones {
        height: 450px;
        margin: 0 auto;
        max-width: 350px;
    }

    .phone-img {
        width: 220px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .app-buttons {
        justify-content: center;
    }
    .app-btn img{
        height: 60px;
    }

    .marketplace-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketplace-image {
        /* order: 2; */
        min-height: 200px;
    }
    .marketplace-image h2{
        font-size: 2rem;
    }

    .marketplace-content {
        order: 1;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-item {
        text-align: center;
    }
    .feature-item p{
        font-size: 0.7rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .partners-title{
        font-size: 3rem;

    }
    .partner-logo{
        height: 40px;
    }

    .sports-logos {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .sport-logo {
        height: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-section {
        padding: 60px 1.5rem;
    }

    .partners-section {
        padding: 60px 1.5rem;
    }

    .marketplace-section {
        padding: 60px 1.5rem;
    }
}