@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0B0B0A;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #0B0B0A !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 203, 42, 0.1);
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.logo-text-1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #8BCB2A;
    text-transform: uppercase;
}

.logo-text-2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8BCB2A !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8BCB2A;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-signup {
    background: #8BCB2A;
    color: #172121 !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    margin-left: 1rem !important;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.btn-signup:hover {
    background: #7db426;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 203, 42, 0.2);
}

.navbar-toggler {
    border: none;
    color: white;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%); */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* background: linear-gradient(45deg, #0A0A0A 0%, transparent 100%); */
    /* clip-path: polygon(100% 0, 100% 100%, 0 0); */
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(27, 27, 26, 0.1);
    color: #8BCB2A;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid grey;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: #8BCB2A;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    font-family: 'Matter', sans-serif;
}

.download-buttons {
    display: flex;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    margin: 0px !important;
}

.ios-btn {
    color: #172121;
}

.android-btn {
    color: #172121;
        margin: 0px !important;

}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text small {
    font-size: 12px;
    opacity: 0.8;
}

.btn-text span {
    font-weight: 600;
    font-size: 18px;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stats-overlay {
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    margin: 10px;
    border-top: 2px solid #FFFFFF1A;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #8BCB2A;
    margin: 0;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: #0F0F0F;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    /* background: linear-gradient(90deg, #8BCB2A, transparent); */
    z-index: 1;
}

.process-card {
    background: #0F0F0F;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    margin: 2px;
    /* border: 1px solid rgba(139, 203, 42, 0.1); */
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: #8BCB2A;
    box-shadow: 0 20px 40px rgba(139, 203, 42, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 203, 42, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #8BCB2A;
    border: 1px solid #A7F4321A;
}

.process-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.process-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-number {
    background: #8BCB2A;
    color: #172121;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 400 !important;
    font-size: 20px !important;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #172121;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    border-color: #8BCB2A;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 203, 42, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 203, 42, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8BCB2A;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
}

.testimonial-section {
    margin-top: 80px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: transparent;
    color: rgba(255,255,255,0.85);
}

.footer .footer-links a {
    color: #99A1AF;
    text-decoration: none;
    padding: 0 12px;
    font-size: 14px;
}

.footer .footer-links a:hover {
    color: #8BCB2A;
    text-decoration: underline;
}

.copyright-text{
    color: #99A1AF;
    font-size: 10px;

}

/* Responsive adjustments */
@media (max-width: 576px) {
    .footer .footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 12px;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(139, 203, 42, 0.1) 0%, rgba(23, 33, 33, 0.9) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(139, 203, 42, 0.2);
}

.testimonial-card i.fa-quote-left {
    font-size: 40px;
    color: #8BCB2A;
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    color: #8BCB2A;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

/* Footer */
.footer {
    background: #1c2727;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(139, 203, 42, 0.1);
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8BCB2A;
    color: #172121;
    transform: translateY(-3px);
}

.footer h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8BCB2A;
}

.newsletter-form {
    position: relative;
    max-width: 300px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #8BCB2A;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #8BCB2A;
    color: #172121;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #7db426;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-card h2 {
        font-size: 36px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .hero-section::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        justify-content: center;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-stats {
        gap: 30px;
    }
    
    .stat h4 {
        font-size: 32px;
    }
    
    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        background: #172121;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .btn-signup {
        margin: 20px 0 0 !important;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .journey-section,
    .features-section,
    .cta-section {
        padding: 60px 0;
    }
}

/* Add these styles to your existing styles.css file */

/* Ecosystem Section */
.ecosystem-section {
    padding: 100px 0;
    background: #0A0A0A;
}

.ecosystem-cards {
    margin-top: 60px;
}

.ecosystem-title{
font-family: Oswald;
font-weight: 400;
font-style: Regular;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #A7F432;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #8BCB2A;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ecosystem-card:hover::before {
    transform: scaleX(1);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    border-color: #8BCB2A;
    box-shadow: 0 20px 40px rgba(139, 203, 42, 0.1);
}

.ecosystem-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 203, 42, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #8BCB2A;
    margin-bottom: 25px;
}

.ecosystem-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.ecosystem-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.ecosystem-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecosystem-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ecosystem-features i {
    color: #8BCB2A;
    margin-right: 10px;
    font-size: 14px;
}

/* Powerful Features Section */
.powerful-features-section {
    padding: 100px 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}


.powerful-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 203, 42, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.pfs-title {
    color: #8BCB2A;
}

.features-dashboard {
    background: #0F0F0F;
    border-radius: 30px;
    padding: 50px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    margin-top: 50px;
}

/* Player Profile Card */
.player-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.player-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #8BCB2A;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin: 0;
    color: white;
}

.player-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 5px 0 0;
}

.player-rating {
    margin-left: auto;
    text-align: center;
}

.rating-value {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #8BCB2A;
    display: block;
    line-height: 1;
}

.rating-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.player-stats h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-bar {
    background: rgba(255, 255, 255, 0.05);
    height: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.stat-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #8BCB2A, #A7F432);
    border-radius: 5px;
}

.stat-value {
    position: absolute;
    right: 0;
    top: -25px;
    color: #8BCB2A;
    font-weight: 600;
    font-size: 14px;
}

.player-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.btn-action {
    background: rgba(139, 203, 42, 0.1);
    border: 1px solid rgba(139, 203, 42, 0.2);
    color: #8BCB2A;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-action:hover {
    background: rgba(139, 203, 42, 0.2);
    transform: translateY(-2px);
}

/* Features List Card */
.features-list-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.features-list-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-highlight {
    background: rgba(139, 203, 42, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #8BCB2A;
}

.feature-highlight h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    color: #8BCB2A;
    font-size: 20px;
    margin-top: 3px;
}

.feature-item h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin: 0 0 5px;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Events Card */
.events-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.events-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.events-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.upcoming-events h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: #8BCB2A;
    transform: translateX(5px);
}

.event-date {
    background: rgba(139, 203, 42, 0.1);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    min-width: 60px;
    margin-right: 15px;
}

.event-day {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #8BCB2A;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 5px;
}

.event-info h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin: 0 0 5px;
    color: white;
}

.event-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.event-attendees {
    margin-left: auto;
    text-align: center;
}

.event-attendees span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #8BCB2A;
    line-height: 1;
}

.event-attendees small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.scout-network {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.scout-network h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.scout-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.scout-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #8BCB2A;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #1c2727;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: #8BCB2A;
    font-size: 24px;
    margin-top: 5px;
}

.contact-item h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin: 0 0 5px;
    color: white;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8BCB2A;
    box-shadow: 0 0 0 3px rgba(139, 203, 42, 0.1);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: #8BCB2A;
    color: #172121;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7db426;
    transform: translateY(-2px);
}

/* Responsive Design Additions */
@media (max-width: 991.98px) {
    .features-dashboard {
        padding: 30px;
    }
    
    .player-actions {
        grid-template-columns: 1fr;
    }
    
    .scout-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .ecosystem-card {
        margin-bottom: 30px;
    }
    
    .player-header {
        flex-direction: column;
        text-align: center;
    }
    
    .player-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .player-rating {
        margin: 15px 0 0;
    }
    
    .event-item {
        flex-wrap: wrap;
    }
    
    .event-attendees {
        margin: 10px auto 0;
    }
    
    .scout-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .features-dashboard {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin: 0 0 10px;
    }
}

.how-it-works-section {
    background: #0A0A0A;    
}


.step-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            font-size: 10px;
            font-weight: 700;
            color: black;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .icon-wrapper i {
            font-size: 2rem;
            color: white;
        }
        
        .cta-section {
            /* Smaller centered circular radial gradient (tighter glow) */
            background: radial-gradient(circle at center, rgba(167,244,50,0.28) 0%, rgba(167,244,50,0.18) 4%, rgba(167,244,50,0.08) 10%, rgba(10,10,10,0.92) 30%, #0A0A0A 100%);
            background-color: #0A0A0A; /* fallback */
            padding: 80px 0;
        }
        
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: #e6b400;
            border-color: #e6b400;
            transform: scale(1.05);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            border-color: white;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        .feature-highlight {
            background-color: white;
            border-left: 5px solid var(--secondary-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 30px 0;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .section-title:after {
           font-family: 'Oswald', sans-serif;
            font-weight: 400;
            font-size: 86px !important;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
        }
        
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .step-title{
            font-family: 'Matter', 'Poppins' !important;
        }

        .how-it-works-hedaer{
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .discover-title{
            font-family: 'Oswald', sans-serif;
            font-size: 82px !important;
            font-weight: 400;
            color: white;
            margin-bottom: 20px;
        }

        .disocver-desc{
            font-family: 'Inter';
            font-size: 16px;
        }

        .discover-span{
            color: #7db426;
        }

        footer{
            height: 89;
            opacity: 1;
            padding-top: 49px;
            padding-right: 100px;
            padding-left: 100px;
            border-top-width: 1px;
            border-top: 1px solid #FFFFFF1A

        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }

            .discover-title{
            font-family: 'Oswald', sans-serif;
            font-size: 40px !important;
            font-weight: 400;
            color: white;
            margin-bottom: 20px;
        }
            
    
        }