/* ==============================================
   RESPONSIVE BREAKPOINTS - HERO NAVIGATION + CANVAS
   ==============================================
   This file keeps every element rendered in index.html adaptive
   by adjusting spacing, font sizes, and the canvas background at
   each breakpoint (1440px → 360px) without touching the legacy
   sections that no longer exist on the page.
 */

@media (max-width: 1440px) {
    .navbar {
        padding: 0 48px;
    }

    .nav-links {
        gap: 32px;
    }

    .hero-content {
        padding: 90px 220px;
    }

    .hero-title {
        font-size: 74px;
    }

    .hero-notice-banner {
        padding: 12px 24px;
        gap: 12px;
    }

    .notice-date {
        font-size: 16px;
    }

    #blockchainCanvas {
        width: 48%;
    }

    .animated-bg-wrapper {
        margin-top: -360px;
    }
}


@media (max-width: 1200px) {
    .navbar {
        padding: 0 36px;
    }

    .nav-links {
        gap: 28px;
    }

    .hero-content {
        padding: 80px 150px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-notice-banner {
        padding: 11px 22px;
    }

    #blockchainCanvas {
        width: 52%;
    }

    .animated-bg-wrapper {
        margin-top: -320px;
    }
}


@media (max-width: 1024px) {
    .navbar {
        padding: 0 28px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        flex-direction: column;
        background: rgba(3, 8, 20, 0.95);
        backdrop-filter: blur(18px);
        padding: 110px 32px 32px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
        z-index: 99999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-links .nav-pill {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }

    .hero-content {
        padding: 70px 80px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-notice-banner {
        padding: 12px 24px;
        gap: 10px;
    }

    #blockchainCanvas {
        width: 58%;
    }

    .animated-bg-wrapper {
        margin-top: -260px;
    }
}


@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        width: 100%;
        padding-top: 130px;
        padding-left: 24px;
    }

    .nav-links a {
        font-size: 15px;
        letter-spacing: normal;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-notice-banner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 20px;
    }

    .notice-text-wrapper {
        align-items: center;
        text-align: center;
    }

    #blockchainCanvas {
        width: 70%;
    }

    .animated-bg-wrapper {
        margin-top: -220px;
    }

    .hero-logo {
        transform: translateY(-60px);
    }

    .footer {
        padding: 32px 16px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .nav-links {
        padding-top: 150px;
        padding-left: 20px;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 0.1rem;
        text-align: center;
    }

    .hero-notice-banner {
        width: 100%;
        margin: 0 auto 24px;
    }

    .notice-main-text {
        font-size: 14px;
    }

    .notice-date {
        font-size: 15px;
    }

    #blockchainCanvas {
        width: 90%;
        right: -20px;
    }

    .animated-bg-wrapper {
        margin-top: -180px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}


@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        padding-top: 30px;
    }

    .nav-links {
        width: 100%;
    }
}
