/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

/* Header */
.modern-nav {
    background: #FFD700;
    border: 4px solid #000;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
        margin: 0 auto;
    padding: 10px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Comic Sans MS", "Arial Black", sans-serif;
    color: #9400D3;
    text-shadow: 1px 1px 0 #000;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.blink {
    font-family: "Comic Sans MS", "Arial Black", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    color: #333;
    font-weight: normal;
    margin-top: 5px;
    display: none;
}

/* Menu Desktop */
.nav-menu-desktop {
    flex-grow: 1;
}

.nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-left: 20px;
}

.nav-link {
    background: #FF6B9E;
    color: #000;
    padding: 10px;
    border: 2px solid #000;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    background: #FF1493;
    color: #fff;
}

/* Menu Mobile */
.nav-mobile-button {
    display: none;
    background: #FF6B9E;
    border: 2px solid #000;
    padding: 10px;
    cursor: pointer;
}

.nav-menu-mobile {
    display: none;
}

.nav-menu-mobile-open {
    display: block;
    padding: 10px;
}

.nav-link-mobile {
    display: block;
    background: #FF6B9E;
    color: #000;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #000;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.nav-link-mobile:hover {
    background: #FF1493;
    color: #fff;
}

/* Footer */
.footer {
    background: #FFD700;
    padding: 15px;
    text-align: center;
    border: 4px solid #000;
    margin-top: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.footer * {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: normal !important;
}

.footer a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer p {
    font-size: 20px;
    color: #000;
    margin-top: 10px;
}

.footer-icon {
    display: none;
}

.site-title, .nav-link, .nav-link-mobile {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: normal !important;
}

.site-title {
    letter-spacing: 0.5px;
}

.nav-link, .nav-link-mobile {
    font-size: 18px;
    letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .modern-nav {
        width: 100vw;
        margin-left: -0;
        border-left: 0;
        border-right: 0;
    }

    .nav-content {
        padding: 5px;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .nav-menu-desktop {
        display: none;
    }

    .nav-mobile-button {
        display: block;
    }

    .footer {
        padding: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer a, .footer p {
        font-size: 18px;
    }

    .footer-separator {
        display: none;
    }
}