@keyframes blink-glow {
    0% { color:#2c3e66; text-shadow:none; }
    50% { color:#e97132; text-shadow:0 0 5px rgba(233,113,50,0.5); }
    100% { color:#2c3e66; text-shadow:none; }
}
.nav-link { font-size:1.2rem; font-weight:600; text-decoration:none; animation:blink-glow 1.8s infinite; }
.nav-link:nth-child(1) { animation-delay:0s; }
.nav-link:nth-child(2) { animation-delay:0.3s; }
.nav-link:nth-child(3) { animation-delay:0.6s; }
.nav-link:nth-child(4) { animation-delay:0.9s; }
.nav-link:nth-child(5) { animation-delay:1.2s; }
.nav-link:nth-child(6) { animation-delay:0.15s; }
.nav-link:nth-child(7) { animation-delay:0.75s; }
.nav-link:hover { animation:none; color:#e97132; transform:scale(1.02); }
.main-content { max-width:100%; margin:0 auto; padding:0 1.5rem; }
.category-header { display:flex; justify-content:space-between; align-items:baseline; border-left:5px solid #e97132; padding-left:1rem; margin-bottom:0.5rem; margin-top:20px;}
.category-name { font-size:16px; font-weight:600; background:#fff; background-clip:text; -webkit-background-clip:text; color:transparent; }
.more-link { font-size:14px; color:#e97132; text-decoration:none; padding:0.1rem 1rem; border-radius:30px; }
.card-wrapper { display:grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap:1.2rem; padding:0.5rem 0.2rem; }
.media-card { background:white; border-radius:5px; overflow:hidden; box-shadow:0 8px 18px rgba(0,0,0,0.05); transition:0.25s; cursor:pointer; white-space:normal; }
.media-card:hover { transform:translateY(-5px); }
.card-img { width:100%; height:230px; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; }
.card-img img { width:100%; height:230px; object-fit:cover; }
.card-info { padding:0.8rem 0.7rem 1rem; }
.card-title { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis; word-break:break-word; font-size:13px; }
.card-sub { font-size:0.7rem; color:#91a0b6; }

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    line-height: 50px;
}

.menu-panel {
    position: fixed;
    top: 50px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 50px);
    background: #1a252f;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.menu-panel.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    padding: 15px;
}

.menu-category {
    margin-bottom: 10px;
}

.menu-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #2c3e50;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}

.menu-category-title.active {
    background: #e97132;
}

.check-mark {
    color: #fff;
    font-weight: bold;
}





@media (max-width:680px) {
    .media-card { width:100%; }
    .card-img { height:180px; border-radius:10px; }
    .card-img img { height:180px; }
    .main-content { padding:0 5px; }
    .menu-panel {
        width: 80%;
        left: -80%;
    }
    .card-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    .card-img { height:150px; }
    .card-img img { height:150px; }
}