/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #EF7F1A 0%, #F6B278 100%);
    padding: 2rem 0;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 104px;
    height: 104px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    width: 365px;
    height: 52px;
    background: #fff;
    border-radius: 4px;
}

.divider {
    width: 2px;
    height: 105px;
    background: #fff;
}

.header-text {
    flex: 1;
    color: #fff;
}

.description {
    font-size: 20px;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 24px;
}

.copyright {
    font-size: 24px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F6B278 0%, #EF7F1A 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 121px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #fff;
    color: #EF7F1A;
    border: 3px solid #fff;
}

.btn-primary:hover {
    background: #EF7F1A;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}


.btn-icon {
    width: 24px;
    height: 24px;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description p {
    font-size: 32px;
    color: #000;
    font-weight: 400;
}

.hero-image {
    margin-top: 2rem;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 75px;
    font-weight: 700;
    color: #EF7F1A;
    margin-bottom: 1rem;
}

.section-divider {
    width: 100%;
    height: 3px;
    background: #EF7F1A;
    margin: 1rem auto;
    max-width: 800px;
}

.section-header p {
    font-size: 32px;
    color: #EF7F1A;
    max-width: 800px;
    margin: 0 auto;
}

/* Goals Section */
.goals {
    padding: 6rem 0;
    background: #fff;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.goal-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF7F1A;
    border-radius: 50%;
}

.goal-icon img {
    width: 40px;
    height: 40px;
}

.goal-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.goal-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
   
    padding: 2rem;    
 
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF7F1A;
    border-radius: 50%;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #EF7F1A;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* Planned Features Section */
.planned-features {
    padding: 6rem 0;
    background: #fff;
}

.planned-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.planned-feature-card {
    background: #EF7F1A;
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: -20px 20px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.planned-feature-card:hover {
    transform: translateY(-5px);
}

.planned-feature-card .feature-icon {
  
}

.planned-feature-card .feature-icon img {
    width: 50px;
    height: 50px;
}

.planned-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.planned-feature-card p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile Features Section */
.mobile-features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-feature-card {
    background: #EF7F1A;
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: -20px 20px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.mobile-feature-card:hover {
    transform: translateY(-5px);
}

.mobile-feature-card .feature-icon {
    background: #fff;
    margin-bottom: 1.5rem;
}

.mobile-feature-card .feature-icon img {
    width: 50px;
    height: 50px;
}

.mobile-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mobile-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #2b2b2b 100%);
    color: #fff;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: 75px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.gallery-divider {
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 1rem auto;
    max-width: 800px;
}

.gallery-header p {
    font-size: 32px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-image {
    height: 200px;
    background: #fff;
    border-radius: 8px;
    border: 3px solid #fff;
}

/* Telegram Channel Section */
.telegram-channel {
    padding: 6rem 0;
    background: linear-gradient(135deg, #EF7F1A 0%, #F6B278 100%);
    text-align: center;
    color: #fff;
}

.channel-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.channel-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.channel-content p {
    font-size: 24px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {  
  
    padding: 1rem;
    border-radius: 12px;
}

/* Hero Phone Image Base Styles */
.hero-phone-image {
    height: auto;
    max-height: 800px;
    object-fit: contain;
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
}

/* Hero Background Desktop Only */
.hero-bg-desktop {
    background: url('/svg/project/league/main_banner.svg') center center/cover no-repeat;
}

/* Mobile Optimizations */
@media (max-width: 1200px) {
    .hero-phone-image {
        max-height: 600px !important;
    }
}

@media (max-width: 992px) {
    .hero-phone-image {
        max-height: 500px !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .hero-phone-container {
        margin-top: 2rem;
    }
    
    .planned-feature-card {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .planned-feature-card .feature-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 4rem !important;
        min-height: 80vh !important;
        background: none !important;
    }
    
    .hero-bg-desktop {
        background: white !important;
        padding-bottom: 2em;
    }
    
    .hero-logo {
        height: 150px !important;
        width: 150px !important;
    }
    
    .hero-divider {
        width: 300px !important;
    }
    
    .hero-description-text {
        font-size: 1.2rem !important;
        max-width: 100% !important;
    }
    
    .hero-logo-horizontal {
        max-width: 100%;
        height: auto;
    }
    
    .hero-title-mobile {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
    }
    
    .mobile-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Hero Phone Image Mobile */
    .hero-phone-image {
        max-height: 200px !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-phone-container {
        margin-top: 1.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Philosophy Section Mobile */
    .philosophy-card {
        min-height: 200px !important;
        padding: 2rem !important;
    }
    
    .philosophy-title {
        font-size: 1.2rem !important;
    }
    
    .philosophy-text {
        font-size: 1.2rem !important;
    }
    
    /* Goals Section Mobile */
    .goals-title {
        font-size: 2.5rem !important;
    }
    
    .goals-description {
        font-size: 1.2rem !important;
    }
    
    .goal-title {
        font-size: 1.1rem !important;
    }
    
    .goal-text {
        font-size: 0.9rem !important;
    }
    
    /* Features Section Mobile */
    .features-title {
        font-size: 2.5rem !important;
    }
    
    .features-description {
        font-size: 1.2rem !important;
    }
    
    .feature-title {
        font-size: 1rem !important;
    }
    
    .feature-text {
        font-size: 0.9rem !important;
    }
    
    .features-divider {
        width: 150px !important;
    }
    
    /* Planned Features Mobile */
    .planned-title {
        font-size: 2.5rem !important;
    }
    
    .planned-description {
        font-size: 1.2rem !important;
    }
    
    .planned-feature-title {
        font-size: 1.2rem !important;
    }
    
    .planned-feature-text {
        font-size: 0.9rem !important;
    }
    
    /* Gallery Mobile */
    .gallery-title {
        font-size: 2.5rem !important;
    }
    
    .gallery-description {
        font-size: 1.1rem !important;
    }
    
    /* Join Section Mobile */
    .join-title {
        font-size: 2.5rem !important;
    }
    
    .join-description {
        font-size: 1.1rem !important;
    }
    
    .telegram-text {
        font-size: 2rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
    
    .qr-image {
        max-width: 300px !important;
    }
    
    /* General Mobile */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .nav-links,
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description h2 {
        font-size: 24px;
    }
    
    .hero-description p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .goals-grid,
    .features-grid,
    .planned-features-grid,
    .mobile-features-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-content h2 {
        font-size: 40px;
    }
    
    .channel-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .hero-section {
        padding-top: 2rem !important;
        min-height: 70vh !important;
    }
    
    .hero-logo {
        height: 120px !important;
        width: 120px !important;
    }
    
    .hero-divider {
        width: 250px !important;
    }
    
    .hero-description-text {
        font-size: 1rem !important;
    }
    
    .hero-title-mobile {
        font-size: 1.5rem !important;
    }
    
    .philosophy-card {
        padding: 1.5rem !important;
        min-height: 180px !important;
    }
    
    .philosophy-title {
        font-size: 1.1rem !important;
    }
    
    .philosophy-text {
        font-size: 1rem !important;
    }
    
    .goals-title,
    .features-title,
    .planned-title,
    .gallery-title,
    .join-title {
        font-size: 2rem !important;
    }
    
    .goal-title,
    .feature-title,
    .planned-feature-title {
        font-size: 1rem !important;
    }
    
    .goal-text,
    .feature-text,
    .planned-feature-text {
        font-size: 0.85rem !important;
    }
    
    .telegram-text {
        font-size: 1.5rem !important;
    }
    
    .qr-image {
        max-width: 250px !important;
    }
    
    /* Hero Phone Image Extra Small Mobile */
    .hero-phone-image {
        max-height: 150px !important;
        max-width: 150px !important;
    }
    
    .hero-phone-container {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0;
    }
    
    .header,
    .hero,
    .goals,
    .features,
    .planned-features,
    .mobile-features,
    .gallery,
    .telegram-channel {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 16px;
    }
}
