html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #001e48;
}

body {
    min-height: 100vh;
    box-sizing: border-box;
}

.mc-nav {
    width: 100vw;
    background: #175059;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
    height: 84px;
    box-shadow: 0 6px 0 #001e48, 0 12px 0 #823311;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.mc-logo-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mc-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 4px solid #faeac3;
}

.mc-logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #faeac3;
    border: 4px solid #ed8824;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', Arial Black, Arial, sans-serif;
    font-size: 1.2rem;
    color: #001e48;
    font-weight: bold;
}

.mc-title {
    font-family: 'Luckiest Guy', Arial Black, Arial, sans-serif;
    font-size: 2.2rem;
    color: #eb7317;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 #001e48;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 10px;
}

.mc-menu {
    display: flex;
    gap: 26px;
}

.mc-menu-link {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: none;
    border: none;
    outline: none;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.mc-menu-link:hover,
.mc-menu-link:focus {
    background: #eb7317;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.mc-hero {
    width: 100vw;
    height: calc(100vh - 84px); /* Full height minus nav */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 84px; /* Prevent overlap with nav */
    box-sizing: border-box;
}

.mc-hero-content {
    background: #175059;
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 12px 36px #000b1b;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.mc-image-title {
    margin-bottom: 36x;
}

.mc-word {
    font-family: 'Luckiest Guy', Impact, Arial Black, Arial, sans-serif;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #823311, 4px 4px 0 #001e48;
    display: block;
    line-height: 1.05;
}

.mc-hero-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.4;
}

.mc-hero-content button {
    background-color: #ed8824;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 2px 2px 0 #103439, 0 4px 16px #103439;
    transition: background 0.25s, color 0.25s, transform 0.13s;
}

.mc-hero-content button:hover,
.mc-hero-content button:focus {
    background-color: #eb7317;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

/* Authentication button styles */
.hidden {
    display: none !important;
}

.mc-hero-content button.secondary {
    background-color: transparent;
    border: 2px solid #ed8824;
    color: #ed8824;
    margin-left: 12px;
}

.mc-hero-content button.secondary:hover,
.mc-hero-content button.secondary:focus {
    background-color: #ed8824;
    color: #fff;
}

.user-welcome {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.user-welcome p {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #fff;
}

.logout-btn {
    background-color: #823311 !important;
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    margin-top: 8px;
}

.logout-btn:hover {
    background-color: #6b2a0e !important;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .mc-nav {
        padding: 0 20px;
        height: 70px;
    }
    
    .mc-menu {
        gap: 12px;
    }
    
    .mc-menu-link {
        font-size: 0.9rem;
    }
    
    .mc-word {
        font-size: 2.2rem;
    }
    
    .mc-hero-content button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .mc-hero-content button.secondary {
        margin-left: 8px;
        margin-top: 8px;
    }
}