body {
    display: block;
}

.app-container {
    max-width: 100% !important;
    flex-direction: row;
    height: 100vh;
}

.dark-section {
    width: 40vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    box-sizing: border-box;
}

.light-section {
    width: 60vw;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    margin-top: 0;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-medallions {
    grid-template-columns: repeat(5, 1fr);
    max-width: 600px;
    margin: 0 auto 50px;
}

.coin { width: 80px; height: 80px; }
.nav-label { font-size: 0.6rem; }

.category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

header {
    text-align: left;
    align-items: flex-start;
}

.main-medallion {
    width: 220px;
    height: 220px;
    margin-bottom: 20px;
}

h1 { font-size: 2.5rem; }
.description { font-size: 0.9rem; max-width: 400px; }

.category-card:hover {
    transform: translateY(-10px);
}