.discord-sectionb {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    background: var(--var-white);
    height: 50vh;
}
.discord-sectionb .container{
    padding: 0 !important;
    height: 100%;
}
.section-title {
    font-size: 2.5em;
    font-family: "Horizon";
    color: var(--var-pink);
}
.about {
    padding: 6rem 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
    background: var(--var-white);
    position: relative;
}
.about-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: var(--var-black);
}
.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: start;
}
.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff3366;
}
.about-location {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}
.location-map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(1) hue-rotate(180deg) saturate(0.8) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.location-map:hover::before {
    opacity: 1;
}
.about-text {
    padding: 3vw;
}
@media (max-width: 1050px) {
    .about-text {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .discord-sectionb {
        height: auto;
    }
    .about-description:nth-child(1n) {
        margin-bottom: 0;
    }
}
@media (max-width: 770px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .about-text {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
    .about-location {
        width: 100vw;
        height: 50vh;
    }
    .section-title {
        font-size: 7vw;
        margin-bottom: 2vh;
    }
}