.about-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark-alt));
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/minecraft-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 250px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}
.section-titlegg {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.section-titlegg::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.about-intro {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.gamemode-section {
    margin: 60px 0;
}

.gamemode-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gamemode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--green);
}

.gamemode-card h3 {
    color: var(--green);
    margin-bottom: 15px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.gamemode-card h3 i {
    margin-left: 10px;
}

.why-us-section {
    background: linear-gradient(135deg, var(--dark-alt), var(--dark));
    padding: 60px 0;
    margin: 60px 0;
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/minecraft-grid.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin: 10px 0;
}

.foundation-date {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.foundation-date h4 {
    color: var(--green);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}