/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2rem;
    }

    .tier-row {
        flex-direction: column;
    }

    .champions-container {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 2rem 1rem 1rem;
    }

    .controls {
        flex-direction: column;
        gap: 1rem;
    }

    .search-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 1.5rem;
    }

    .hero-title .icon {
        width: 40px;
        height: 40px;
    }

    .tier-badge {
        width: 70px;
        font-size: 2rem;
    }

    .champion-icon {
        width: 48px;
        height: 48px;
    }

    .modal-content {
        padding: 1rem;
    }

    .modal-header {
        flex-direction: column;
    }
}
