.about-club-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}


.about-club-container {
    background: linear-gradient(145deg, rgba(14, 27, 50, 0.9), rgba(6, 12, 24, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 255, 0.15); 
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    padding: 60px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1); 
    color: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-club-container:hover {
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7), 
        0 0 30px rgba(0, 168, 255, 0.1); 
}


.about-club-header {
    text-align: center;
    margin-bottom: 50px;
}


.about-icon {
    font-size: 46px;
    color: #00a8ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.4));
    animation: floatIcon 3s ease-in-out infinite;
}


@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


.about-club-header h1 {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 42px;
    font-weight: 800 !important;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}


.about-subtitle {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 18px;
    color: #00a8ff; 
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}


.about-club-content {
    background: rgba(2, 6, 12, 0.5); 
    border-radius: 16px;
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    border-left: 4px solid #00a8ff; 
}


.about-club-content p {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1; 
    margin-bottom: 25px;
    text-align: left; 
}


.about-club-content p:last-child {
    margin-bottom: 0;
}


.about-club-content p:first-of-type {
    font-size: 18px;
    font-weight: 600 !important;
    color: #ffffff; 
    line-height: 1.7;
    margin-bottom: 30px;
}


@media (max-width: 768px) {

    .about-club-section {
        padding: 35px 14px;
        min-height: auto;
        align-items: flex-start;
    }

    .about-club-container {
        padding: 28px 18px;
        border-radius: 18px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-club-header {
        margin-bottom: 28px;
    }

    .about-icon {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .about-club-header h1 {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .about-subtitle {
        display: block;
        font-size: 14px;
        line-height: 1.4;
    }

    .about-club-content {
        padding: 22px 16px;
        border-radius: 14px;
        border-left: 3px solid #00a8ff;
    }

    .about-club-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .about-club-content p:first-of-type {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
}

@media (max-width: 420px) {

    .about-club-section {
        padding: 25px 10px;
    }

    .about-club-container {
        padding: 24px 14px;
        border-radius: 16px;
    }

    .about-club-header h1 {
        font-size: 23px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .about-club-content {
        padding: 18px 13px;
    }

    .about-club-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {

    .about-club-section {
        padding-top: 30px !important;
    }

}