section {
    min-height: 100vh;
    width: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.advanced-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}
.stats-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);;
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: scale(1.05);
}
.stat-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0ff;
}
.stat-number.glow {
    text-shadow: 0 0 15px #0ff, 0 0 5px #0ff;
}
.stat-desc {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Gallery */
.mega-gallery {
    background: #000;
    padding: 60px 20px;
}
.mega-gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.mega-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.mega-gallery-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}
.mega-gallery-card:hover img {
    transform: scale(1.1);
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: 0.3s;
}
.overlay-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.overlay-desc {
    font-size: 0.9rem;
    opacity: 0.85;
}
