/* TOP Section Styles */
.section-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    color: #B028EF;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: linear-gradient(135deg, rgba(176, 40, 239, 0.1) 0%, rgba(39, 39, 39, 0.5) 100%);
    border: 1px solid rgba(176, 40, 239, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 40, 239, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    color: #B028EF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* TOP Page Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .overview-card h3 {
        font-size: 1.3rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .overview-grid {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .overview-card {
        padding: 1rem;
    }
    
    .overview-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .overview-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}