/* About Page Styles */
.about-section {
    width: 100%;
    padding: 150px 40px 80px;
    min-height: calc(100vh - 200px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-main-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    margin-top: 20px;
}

.about-product-title {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin: 0 0 24px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: rgba(186, 186, 186, 1);
    margin: 0 0 60px 0;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
}

.about-intro {
    width: 100%;
    margin-bottom: 80px;
}

.intro-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .intro-card {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.intro-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.intro-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.35));
}

.intro-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0 0 24px 0;
}

.intro-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.8;
    margin: 0;
    max-width: 900px;
}

.about-stats {
    width: 100%;
    margin-bottom: 80px;
}

.stats-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-content: center;
}

.stat-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .stat-card {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}


.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    width: 91px;
    height: 91px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.stat-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.35));
}

.stat-number {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.stat-label {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.4;
}

.about-mission {
    width: 100%;
    margin-bottom: 80px;
}

.mission-content {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .mission-content {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.mission-icon {
    width: 91px;
    height: 91px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.mission-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.35));
}

.mission-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin: 0 0 30px 0;
}

.mission-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.8;
    margin: 0 0 20px 0;
    max-width: 900px;
}

.mission-text:last-child {
    margin-bottom: 0;
}

.about-values {
    width: 100%;
    margin-bottom: 80px;
}

.values-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 50px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .value-card {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.value-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-icon {
    position: relative;
    right: -15px;
    width: 91px;
    height: 91px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.35));
}

.value-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
    max-width: 420px;
    line-height: 1.3;
    flex: 1;
    text-align: center;
    background: rgba(21, 21, 21, 0.35);
    padding: 16px 20px;
    border-radius: 20px;
    border: 1px solid rgba(71, 71, 71, 0.35);
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .value-title {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.value-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 1);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

.about-what-we-do {
    width: 100%;
    margin-bottom: 80px;
}

.what-we-do-content {
    display: flex;
    flex-direction: column;
}

.what-we-do-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 50px 0;
}

.what-we-do-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.what-we-do-item {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .what-we-do-item {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.what-we-do-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.what-we-do-icon {
    width: 91px;
    height: 91px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.what-we-do-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.35));
}

.what-we-do-text {
    flex: 1;
}

.what-we-do-text h4 {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
}

.what-we-do-text p {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.6;
    margin: 0;
}

.about-founders-games-channel {
    width: 100%;
    max-width: 600px;
    margin-bottom: 80px;
}

.founders-games-channel-card {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .founders-games-channel-card {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.channel-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    text-align: center;
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(100, 104, 251, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(100, 104, 251, 0.3);
}

.channel-icon i {
    font-size: 40px;
    color: #6468FB;
}

.channel-title {
    font-family: 'Square721TL-BoldExtended', 'Arial Black', Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-subtitle {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 0.8);
    margin: 0;
    font-weight: 400;
}

.channel-qr-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founders-games-channel-card .qr-code-wrapper {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* squircle поддержка для qr-code-wrapper */
@supports (corner-shape: squircle) {
    .founders-games-channel-card .qr-code-wrapper {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.founders-games-channel-card:hover .qr-code-wrapper {
    transform: scale(1.05);
}

.founders-games-channel-card .qr-code-image {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 10px;
}

.channel-description {
    margin-bottom: 32px;
    text-align: center;
}

.channel-description p {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.6;
    margin: 0;
}

.btn-channel {
    background: #6468FB;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
}

.btn-channel:hover {
    background: #5559E8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 104, 251, 0.4);
}

.btn-channel i {
    font-size: 20px;
}

.about-contact {
    width: 100%;
    max-width: 800px;
}

.contact-card {
    background: rgba(21, 21, 21, 0.6);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(100, 104, 251, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 30px;
    color: #6468FB;
}

/* squircle поддержка для gradient-border-feature */
@supports (corner-shape: squircle) {
    .contact-card {
        corner-shape: squircle;  
        border-radius: 40px;
    }
}

.contact-icon {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    animation: shake 0.7s ease-in-out infinite;
}

.contact-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.contact-text {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-contact {
    background: #6468FB;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
}

.btn-contact:hover {
    background: #5559E8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 104, 251, 0.4);
}

.btn-contact i {
    font-size: 20px;
}

.about-footer {
    width: 100%;
    padding: 40px;
    text-align: center;
}

/* About Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767px) {
    .about-section {
        padding: calc(92px + env(safe-area-inset-top)) 16px 40px;
        min-height: auto;
    }

    .about-main-title {
        font-size: 28px;
        margin-top: 16px;
    }

    .about-product-title {
        font-size: 32px;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }

    .about-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .about-intro {
        margin-bottom: 40px;
    }

    .intro-card {
        padding: 32px 20px;
    }
    
    .intro-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .intro-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .stats-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 18px;
    }
    
    .stat-icon {
        width: 56px;
        height: 56px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }

    .mission-content {
        padding: 32px 20px;
    }

    .mission-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .mission-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .values-title,
    .what-we-do-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .value-card {
        padding: 24px 18px;
    }
    
    .value-icon {
        width: 56px;
        height: 56px;
    }
    
    .value-title {
        font-size: 18px;
        width: auto;
        max-width: 100%;
        text-wrap: wrap;
    }
    
    .value-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .what-we-do-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 18px;
    }
    
    .what-we-do-icon {
        width: 56px;
        height: 56px;
    }
    
    .what-we-do-title {
        font-size: 18px;
    }
    
    .what-we-do-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-card {
        padding: 32px 20px;
    }

    .contact-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .contact-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 479px) {
    .about-main-title {
        font-size: 24px;
    }
    
    .about-product-title {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 14px;
    }
    
    .intro-title {
        font-size: 20px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .stats-title,
    .values-title,
    .what-we-do-title,
    .mission-title {
        font-size: 22px;
    }
}

