html,
body {
    background-color: #101010;
    color: white;
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.container-fluid {
    overflow: hidden;
}

input {
    background-color: #C9C9C9;
}

h6 {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: #ff9a8b;
}

.location {
    background-color: #7C8B5F;
    border-radius: 22px;
    margin: 0 !important;
    padding: 10px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation-name: float;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* =============================================================================
   Cozy Stardew Valley Style Menu Navigation
   ============================================================================= */

.game-menu-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.game-menu-item {
    position: relative;
    display: block;
    padding: 20px 28px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 3px solid #4747468a;
    border-radius: 8px;
    text-decoration: none;
    color: #f5e6d3;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 0 #1a1a1a;
}

.menu-item-glow {
    display: none;
}

.menu-item-scanline {
    display: none;
}

.menu-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.menu-item-icon {
    font-size: 28px;
    transition: transform 0.2s ease;
}

.menu-item-text {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.menu-item-arrow {
    font-size: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    color: #ffb6a3;
}

/* Hover Effects - Simple and Cozy */
.game-menu-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #3d3d3d 0%, #2f2f2f 100%);
    border-color: #ff9a8b;
    box-shadow: 0 6px 0 #1a1a1a,
                0 8px 20px rgba(255, 154, 139, 0.3);
}

.game-menu-item:hover .menu-item-icon {
    transform: scale(1.1);
}

.game-menu-item:hover .menu-item-text {
    color: #ffb6a3;
}

.game-menu-item:hover .menu-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Active/Click Effect */
.game-menu-item:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1a1a1a;
}

/* Subtle entrance animation */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-menu-item {
    animation: fadeSlideIn 0.4s ease-out backwards;
}

.game-menu-item:nth-child(1) { animation-delay: 0.1s; }
.game-menu-item:nth-child(2) { animation-delay: 0.15s; }
.game-menu-item:nth-child(3) { animation-delay: 0.2s; }
.game-menu-item:nth-child(4) { animation-delay: 0.25s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .game-menu-container {
        padding: 16px;
        gap: 14px;
    }

    .game-menu-item {
        padding: 18px 24px;
    }

    .menu-item-text {
        font-size: 18px;
    }

    .menu-item-icon {
        font-size: 24px;
    }

    .menu-item-arrow {
        font-size: 16px;
    }

    .game-menu-item:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .menu-item-text {
        font-size: 16px;
        letter-spacing: 0.3px;
    }

    .menu-item-icon {
        font-size: 22px;
    }
}

/* Debug borders (commented out) */
/*
div[class^='col-']{
    border: 1px solid red;
}
div[class^='row']{
    border: 1px solid purple;
}
*/