:root {
    /* Soft Pink & Elegant White Palette */
    --bg-base: #fff5f7;
    --bg-surface: #ffffff;
    --accent-main: #ff69b4;
    --accent-soft: #ffb6c1;
    --text-main: #1a1a1a;
    /* Darkened from #4a4a4a */
    --text-muted: #555555;
    /* Darkened from #888888 */
    --border-soft: rgba(0, 0, 0, 0.1);
    /* Slightly more visible border */
    --shadow-soft: 0 4px 15px rgba(255, 105, 180, 0.1);

    /* Legacy Sync */
    --futuristic-bg: var(--bg-base);
    --futuristic-content-bg: var(--bg-surface);
    --futuristic-accent: var(--accent-main);
    --futuristic-accent-glow: rgba(255, 105, 180, 0.2);
    --futuristic-secondary: var(--accent-soft);
    --futuristic-text: var(--text-main);
    --futuristic-muted: var(--text-muted);
    --futuristic-border: var(--border-soft);
    --futuristic-glass: var(--bg-surface);

    --header-height: 450px;
    --card-blur: 0px;
    --comment-indent: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    background-image: radial-gradient(var(--accent-soft) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 500;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

#blog-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Futuristic Header */
.modern-header {
    position: relative;
    height: var(--header-height);
    background: radial-gradient(circle at top right, #fff, var(--bg-base));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    text-align: center;
    overflow: hidden;
}

.modern-header::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.05), transparent),
        radial-gradient(circle at 70% 70%, rgba(255, 182, 193, 0.05), transparent);
    animation: moveMesh 20s infinite alternate;
}

@keyframes moveMesh {
    from {
        transform: translate(-25%, -25%);
    }

    to {
        transform: translate(0, 0);
    }
}

.header-content {
    z-index: 2;
}

.header-title {
    font-size: clamp(2rem, 15vw, 7.5rem);
    font-weight: 950;
    letter-spacing: -5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-main);
    filter: drop-shadow(0 2px 10px rgba(255, 105, 180, 0.1));
    line-height: 1;
}

.header-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 12px;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.header-stats {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 30px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.stats-label {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--futuristic-accent);
    opacity: 0.7;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 950;
    font-family: 'Space Mono', monospace;
    text-shadow: 0 0 10px var(--futuristic-accent);
}

/* Hero Navigation Integration */
.hero-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.hero-nav a,
.hero-nav .user-info-text {
    text-decoration: none;
    color: var(--accent-main);
    font-size: 0.8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
}

.hero-nav a:hover {
    opacity: 1;
    color: var(--futuristic-accent);
    border-color: var(--futuristic-accent);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    transform: translateY(-2px);
}

.hero-nav .active {
    opacity: 1;
    color: var(--futuristic-accent);
    border-color: var(--futuristic-accent);
    background: rgba(0, 242, 255, 0.15);
}



.hero-nav .logout-link {
    color: #ff007a;
    border-color: rgba(255, 0, 122, 0.2);
}

.hero-nav .logout-link:hover {
    color: #ff4d94;
    border-color: #ff007a;
    background: rgba(255, 0, 122, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.2);
}


}

/* Legacy Top Nav Cleanup (No longer used) */
.top-nav {
    display: none !important;
}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 60px;
    padding: 100px 5%;
    position: relative;
}

.main-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.02), transparent 70%);
    pointer-events: none;
}

/* Sidebar Left */
.profile-card {
    margin-bottom: 40px;
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    background: var(--accent-soft);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.name {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--futuristic-text);
}

.item-meta {
    font-size: 0.65rem;
    color: var(--modern-muted);
    font-weight: 300;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    /* Force horizontal */
    flex-wrap: wrap;
    /* Allow wrap if extremely narrow, but keep horizontal flow */
    gap: 12px;
    /* Consistent spacing */
    align-items: center;
}

.view-count {
    color: var(--futuristic-muted);
}

.best-list-grid,
.best-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.blog-card {
    background: var(--bg-surface);
    padding: 30px 25px;
    border: 1px solid var(--border-soft);
    position: relative;
    transition: 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
}

.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.best-item {
    background: var(--bg-surface);
    padding: 20px 25px;
    border: 1px solid var(--border-soft);
    position: relative;
    transition: 0.3s ease;
    border-left: 4px solid var(--accent-main);
    border-radius: 4px 15px 15px 4px;
    box-shadow: var(--shadow-soft);
}

.best-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-main);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.1);
}

.rank-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-soft);
    opacity: 0.5;
    font-family: 'Playfair Display', serif;
}

.best-item h2 {
    font-size: 1rem;
    margin-bottom: 8px;
    max-width: 85%;
}

.bio {
    font-size: 0.9rem;
    color: var(--futuristic-muted);
    font-style: italic;
}

.admin-actions {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-link {
    background: var(--bg-surface);
    border: 1px solid var(--accent-soft);
    color: var(--accent-main);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    border-radius: 50px;
    text-align: center;
}

.action-link:hover {
    background: var(--accent-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

.category-header {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--modern-muted);
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
}

.cat-item {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--futuristic-text);
    font-weight: 400;
    transition: 0.3s;
    border-right: 3px solid transparent;
    cursor: pointer;
}

.cat-item.active,
.cat-item:hover {
    font-weight: 900;
    border-color: var(--futuristic-accent);
    padding-right: 10px;
    color: var(--futuristic-accent);
}

/* Content Area - Title Grid */
.content-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--futuristic-accent);
    padding-bottom: 15px;
}

/* C.content-header {
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-header {
    margin-top: 20px;
}

.latest-header {
    margin-top: 60px;
} */
.bottom-admin-bar {
    margin-top: 60px;
    padding: 30px;
    background: var(--futuristic-glass);
    backdrop-filter: blur(var(--card-blur));
    border: 1px solid var(--futuristic-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.05);
}

.bulk-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--futuristic-text);
}

.big-admin-btn {
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    color: #ffffff;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: 3px;
    text-transform: uppercase;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.big-admin-btn:hover {
    background: linear-gradient(135deg, #ff85c1, #ffd1dc);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.big-admin-btn.danger {
    color: var(--futuristic-secondary);
    border-color: var(--futuristic-secondary);
}

.big-admin-btn.danger:hover {
    background: var(--futuristic-secondary);
    color: #fff;
}

.title-list-grid {
    display: grid;
    gap: 15px;
}

.title-item {
    padding: 30px 40px;
    background: var(--futuristic-glass);
    backdrop-filter: blur(var(--card-blur));
    border: 1px solid var(--futuristic-border);
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
    overflow: hidden;
}

.title-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--futuristic-accent);
    transition: 0.5s;
}

.title-item:hover {
    background: rgba(40, 40, 80, 0.2);
    border-color: var(--futuristic-accent);
    transform: scale(1.02);
}

.title-item:hover::after {
    width: 100%;
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    padding-bottom: 40px;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--futuristic-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Space Mono', monospace;
}

.page-btn:hover {
    border-color: var(--futuristic-accent);
    color: var(--futuristic-accent);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 15px var(--futuristic-accent-glow);
}

.page-btn.active {
    background: var(--futuristic-accent);
    color: var(--futuristic-bg);
    border-color: var(--futuristic-accent);
    box-shadow: 0 0 20px var(--futuristic-accent-glow);
}

.nav-btn {
    font-size: 0.7rem;
    color: #999;
}

.title-item.selected {
    background: #f9f9f9;
    border-color: var(--modern-accent);
}

.item-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    cursor: pointer;
    accent-color: var(--modern-accent);
}

.title-item-inner {
    flex-grow: 1;
}

.title-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--modern-accent);
}

/* List Item Controls - Removed individual buttons to clean UI per user request */
.item-controls {
    display: none;
}

.cat-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--modern-muted);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
}

.title-item h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--futuristic-text);
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.item-meta {
    font-size: 0.7rem;
    color: var(--modern-muted);
    letter-spacing: 2px;
}

.list-admin-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #ff69b4;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
}

.list-admin-btn.edit:hover {
    background: #ff69b4;
    color: #ffffff;
    border-color: #ff69b4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    transform: translateY(-2px);
}

.list-admin-btn.delete {
    color: #ff007a;
    border-color: rgba(255, 0, 122, 0.2);
}

.list-admin-btn.delete:hover {
    background: #ff007a;
    color: white;
    border-color: #ff007a;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.4);
    transform: translateY(-2px);
}

/* Detail View */
.detail-container {
    animation: slideUp 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.2);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    color: #ff69b4;
    margin-bottom: 60px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.1);
}

.back-btn:hover {
    color: #ffffff;
    border-color: #ff69b4;
    background: #ff69b4;
    transform: translateX(-10px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.detail-header {
    margin-bottom: 60px;
}

.detail-header .tag {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--modern-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.detail-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--futuristic-text);
}

.detail-meta {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--modern-muted);
    font-weight: 700;
}

.post-img-container {
    width: 100%;
    margin: 60px 0;
    border-radius: 2px;
    overflow: hidden;
}

.post-img-container img {
    width: 100%;
    display: block;
}

.post-body {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--futuristic-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.post-footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid var(--modern-border);
    display: flex;
    gap: 20px;
}

.action-btn {
    background: #111;
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.sm-action-btn {
    background: #eee;
    border: none;
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.sm-action-btn:hover {
    background: #111;
    color: white;
}

.sm-action-btn.danger:hover {
    background: #ff4444;
    color: white;
}

/* Category Management */
.category-manage-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cat-mgr-box {
    margin: 20px 0;
    padding: 20px;
    background: var(--futuristic-glass);
    border: 1px dashed var(--futuristic-accent);
    backdrop-filter: blur(10px);
}

.cat-mgr-box input {
    padding: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
    margin-right: 10px;
}

.cat-mgr-list {
    list-style: none;
    margin-top: 15px;
}

.cat-mgr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
}

.cat-del-btn {
    color: var(--futuristic-secondary);
    background: rgba(255, 0, 122, 0.1);
    border: 1px solid var(--futuristic-secondary);
    cursor: pointer;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 10px;
    transition: 0.3s;
}

.cat-del-btn:hover {
    background: var(--futuristic-secondary);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
}

/* Sidebar Right */
.sidebar-right .aside-widget {
    margin-bottom: 60px;
}

.widget-header {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--futuristic-accent);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    text-decoration: none;
    color: var(--futuristic-text);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid var(--futuristic-border);
    transition: 0.3s;
}

.social-link:hover {
    padding-left: 10px;
    color: var(--futuristic-accent);
}

/* BGM Player Widget */
.music-widget {
    background: var(--futuristic-glass);
    backdrop-filter: blur(var(--card-blur));
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid var(--futuristic-border);
}

.bgm-btn {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: #ff69b4;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.bgm-btn:hover {
    background: #fff;
    border-color: #ff69b4;
    color: #ff69b4;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    transform: translateY(-2px);
}

.bgm-btn.playing {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    color: #ffffff;
    border-color: #ff69b4;
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bgm-btn.playing .music-icon {
    animation: musicRotate 2s linear infinite;
}

@keyframes musicRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.music-icon {
    font-size: 1rem;
    display: inline-block;
}

/* Modal & Premium Forms */
.modal,
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.01);
    /* Super transparent */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    animation: modalFadeIn 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(40px);
    }
}

.modal.active,
.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-surface);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 25px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
    color: var(--futuristic-text);
}

.modal-content::-webkit-scrollbar {
    width: 0;
    /* Clean look */
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--accent-main);
    text-transform: uppercase;
    word-break: keep-all;
    text-align: center;
}

/* Auth Modal Specific */
.auth-modal {
    max-width: 700px !important;
}

.auth-modal h2 {
    font-size: 6rem;
}

/* User Management Board Styling */
.admin-section-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #111;
}

.admin-section-title h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.user-mgr-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9rem;
}

.user-mgr-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--futuristic-accent);
    font-weight: 900;
    border-bottom: 2px solid var(--futuristic-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-mgr-table td {
    padding: 15px;
    border-bottom: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
}

.user-nickname-cell {
    font-weight: 700;
    color: #111;
}

.role-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.role-badge.admin {
    background: #111;
    color: #fff;
}

.role-badge.user {
    background: #eee;
    color: #666;
}

.user-del-btn {
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #d32f2f;
    color: #d32f2f;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
}

.user-del-btn:hover {
    background: #d32f2f;
    color: #fff;
}

.muted {
    font-size: 0.8rem;
    color: #aaa;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* =========================================
   MOBILE RESPONSIVE LAYOUT (Dedicated)
   ========================================= */


.sidebar-right {
    display: none;
}

/* Show limited info or different nav for mobile */
.top-nav {
    padding: 1rem 5%;
}
}



.header-title {
    font-size: 3rem;
    letter-spacing: -2px;
}

.header-subtitle {
    font-size: 0.8rem;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.header-stats {
    position: relative;
    padding: 10px 20px;
    background: rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
}

.stats-value {
    font-size: 1.2rem;
}

.main-layout {
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}

.top-nav {
    padding: 1.5rem 5%;
    position: relative;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    background: var(--futuristic-glass);
    margin: 10px;
    border-radius: 15px;
    border: 1px solid var(--futuristic-border);
}

.top-nav .nav-left,
.top-nav .nav-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.top-nav a,
.top-nav .user-info-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: 0.3s;
}

.top-nav a:hover {
    border-color: var(--futuristic-accent);
    background: rgba(0, 242, 255, 0.1);
}

/* Force Single Column & Card Style */
.content-area,
.title-list-grid,
.best-list-grid,
.best-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 20px !important;
}

.title-item,
.blog-card {
    padding: 40px 20px 25px 20px;
    /* More top padding for rank badge */
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.title-item h2,
.blog-card h2 {
    font-size: 1.3rem;
    /* Slightly smaller to fit more words horizontally */
    margin-top: 10px;
    line-height: 1.4;
    word-break: keep-all;
    width: 100%;
    display: block;
}

.rank-badge {
    top: 15px;
    left: 20px;
    /* Move to left to stay away from metadata/date */
    right: auto;
    font-size: 1.1rem;
    opacity: 0.6;
    color: var(--futuristic-accent);
    font-style: normal;
    letter-spacing: 2px;
}

.item-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: space-between;
}

/* Reactivate Sidebar for Mobile (Stacked at bottom) */
.sidebar-left,
.sidebar-right {
    display: block;
    width: 100%;
    margin-top: 60px;
    border-top: 1px solid var(--futuristic-border);
    padding-top: 40px;
}

.profile-card {
    background: var(--futuristic-glass);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--futuristic-border);
}

/* Adjust Modal */
.modal-content {
    padding: 30px 20px;
    width: 92%;
    border-radius: 20px;
}

.modal-content h2 {
    font-size: 2.5rem;
}

/* User Actions */
#user-actions {
    display: flex !important;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}
}

/* 15. MOBILE LANDSCAPE SPECIFIC FIXES */


.sidebar-left,
.sidebar-right {
    position: relative;
    top: 0;
}

.header-title {
    font-size: 3rem;
}

/* Mobile Comment Optimization */
:root {
    --comment-indent: 12px;
}

.comment-item {
    padding: 15px 10px;
    border-left-width: 3px !important;
}

.comment-content {
    font-size: 0.9rem;
}
}

/* Oracle Help Chatbot Styling */
#chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}



.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--futuristic-accent);
    color: var(--futuristic-bg);
    border: none;
    box-shadow: 0 0 20px var(--futuristic-accent-glow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 40px var(--futuristic-accent-glow);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    height: 450px;
    background: var(--futuristic-glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--futuristic-accent);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: rgba(0, 242, 255, 0.1);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--futuristic-border);
}

.chat-header span {
    font-size: 0.8rem;
    font-weight: 950;
    color: var(--futuristic-accent);
    letter-spacing: 2px;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--futuristic-accent);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--futuristic-accent) transparent;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.bot-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
}

.user-msg {
    align-self: flex-end;
    background: var(--futuristic-accent);
    color: var(--futuristic-bg);
    font-weight: bold;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid var(--futuristic-border);
}

#chat-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.85rem;
}

#chat-input:focus {
    outline: none;
    border-color: var(--futuristic-accent);
    box-shadow: 0 0 10px var(--futuristic-accent-glow);
}

/* 13. Comment Section Styling */
.comment-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--futuristic-border);
    border-radius: 15px;
}

.comment-list {
    margin-bottom: 30px;
}

.comment-item {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.4s ease-out;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--futuristic-muted);
    margin-bottom: 10px;
}

.comment-nickname {
    color: var(--futuristic-accent);
    font-weight: 700;
}

.comment-content {
    font-size: 0.95rem;
    color: var(--futuristic-text);
    word-break: break-word;
    /* Better than break-all for readability */
    line-height: 1.5;
}

.comment-actions {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
}

.comment-actions button {
    background: none;
    border: none;
    color: var(--futuristic-accent);
    opacity: 0.6;
    cursor: pointer;
    transition: 0.2s;
}

.comment-actions button:hover {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-soft);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-main);
}

.comment-form-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.emoticon-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.emoticon-item {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoticon-item:hover {
    transform: scale(1.3);
}

.comment-input-grid {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

#comment-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--futuristic-border);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 100% !important;
    min-height: 80px !important;
}

.reply-tag {
    background: var(--futuristic-accent);
    color: #000;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: 950;
    letter-spacing: 1px;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border: 1px solid transparent !important;
    transition: 0.3s !important;
}

.reaction-btn:hover {
    background: rgba(0, 242, 255, 0.1) !important;
    border-color: var(--futuristic-accent) !important;
    opacity: 1 !important;
}

.reply-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--futuristic-border);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    resize: vertical;
    min-height: 60px;
}

.action-btn-sm {
    background: none;
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-muted);
    padding: 5px 15px;
    font-size: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn-sm.primary {
    border-color: var(--futuristic-accent);
    color: var(--futuristic-accent);
}

.action-btn-sm:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 14. Account Activity Tabs */
.activity-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid var(--futuristic-border);
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--futuristic-muted);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.tab-btn.active {
    color: var(--futuristic-accent);
    border-bottom: 4px solid var(--futuristic-accent);
}

.activity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.activity-item:hover {
    border-color: var(--futuristic-accent);
    background: rgba(255, 255, 255, 0.1);
}

.activity-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.activity-item p {
    font-size: 0.8rem;
    color: var(--futuristic-muted);
}

/* Layout Switcher Styling */
.layout-switcher {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--accent-soft);
    display: none;
    gap: 5px;
    z-index: 9998;
    /* Just below chatbot to prevent click blocking */
    box-shadow: 0 5px 30px rgba(255, 105, 180, 0.2);
}



.header-subtitle {
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.modern-header {
    height: 400px;
}

body {
    overflow-x: hidden;
    width: 100vw;
}

#blog-container {
    padding: 0 10px;
}

.layout-switcher {
    display: flex;
}
}

/* Force show even in PC mode on mobile */
body.is-pc-forced .layout-switcher {
    display: flex;
    transform: translateX(-50%) scale(1.5);
    /* Scale up to remain clickable on small screen */
    bottom: 40px;
}

.switch-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: var(--futuristic-text);
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.switch-btn.active {
    background: var(--futuristic-accent);
    color: var(--futuristic-bg);
}

.switch-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Notification Badge & Sound Toggle */
.notif-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--futuristic-bg);
    border: 2px solid var(--futuristic-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futuristic-accent);
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 9998;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3), inset 0 0 10px rgba(0, 242, 255, 0.2);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0);
    opacity: 0;
}

.notif-badge.active {
    transform: scale(1);
    opacity: 1;
}

.notif-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.notif-count {
    background: var(--futuristic-secondary);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
}

.notif-toggle-btn {
    background: none;
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
    padding: 5px 10px;
    font-size: 0.65rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
}

.notif-toggle-btn.on {
    color: var(--futuristic-accent);
    border-color: var(--futuristic-accent);
    text-shadow: 0 0 5px var(--futuristic-accent);
}

.mobile-more-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
}



/* Mobile More Menu */
.mobile-more-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
}

.mobile-more-content {
    width: 100%;
    background: var(--futuristic-bg);
    border-top: 1px solid var(--futuristic-accent);
    padding: 30px 20px 50px;
    border-radius: 20px 20px 0 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-more-content h3 {
    font-size: 0.8rem;
    color: var(--futuristic-accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.mobile-more-close {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--futuristic-border);
    color: var(--futuristic-text);
    font-weight: bold;
    border-radius: 10px;
}

/* Delete Button Tactile Feedback */
.cat-del-btn:active,
.inline-action-btn.delete:active,
.danger-btn-sm:active,
.action-btn:active {
    background-color: #ff0000 !important;
    color: #ffffff !important;
    border-color: #ff0000 !important;
    transform: scale(0.95);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* OAuth Buttons */
.oauth-divider {
    margin-top: 20px;
}

.oauth-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--futuristic-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.oauth-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.oauth-btn img {
    width: 18px;
    height: 18px;
}

.oauth-btn.google:hover {
    background: rgba(66, 133, 244, 0.05);
}

.oauth-btn.naver .naver-icon {
    background: #03C75A;
    color: white;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 2px;
}

.oauth-btn.naver:hover {
    background: rgba(3, 199, 90, 0.05);
}

. o a u t h - b t n . n a v e r : h o v e r    {
       b a c k g r o u n d :    r g b a ( 3 ,    1 9 9 ,    9 0 ,    0 . 0 5 ) ;
       
}

     
/* ==========================================
   MOBILE-ONLY REDESIGN (PINK/WHITE PREMIUM)
   ========================================== */
@media (max-width: 1024px) {

    /* Hide PC-specific layout elements */
    .modern-header,
    .sidebar h3,
    #subscriber-stats {
        display: none !important;
    }

    body {
        background-color: #fff5f7 !important;
        /* Soft Pink Background */
        min-width: 0 !important;
        width: 100% !important;
        overflow-x: hidden;
    }

    #blog-container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Mobile Hub Header */
    .mobile-hub-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px 10px;
        background: transparent;
    }

    .hub-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #ff8fa3;
    }

    .categories-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        margin: 0;
    }

    .header-actions {
        display: flex;
        gap: 15px;
    }

    .hub-icon {
        font-size: 1.2rem;
        cursor: pointer;
    }

    /* Mobile Welcome Banner */
    .mobile-welcome-banner {
        display: block !important;
        margin: 10px 20px 20px;
        padding: 25px 20px;
        background: linear-gradient(135deg, #ff8fa3 0%, #ffb3c1 100%);
        border-radius: 20px;
        color: white;
        box-shadow: 0 10px 20px rgba(255, 143, 163, 0.2);
    }

    .welcome-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .welcome-subtitle {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Layout Adjustments */
    .main-layout {
        display: block !important;
        padding: 0 20px 100px !important;
        /* Padding for bottom nav */
    }

    .sidebar {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    /* Category List as Premium Cards */
    #category-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #category-list li {
        background: white;
        border-radius: 16px;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        cursor: pointer;
        transition: transform 0.2s;
        position: relative;
    }

    #category-list li:active {
        transform: scale(0.98);
    }

    #category-list li::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #ff8fa3;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }

    #category-list li.active {
        background: #fff0f3 !important;
        border: 1px solid #ffccd5 !important;
    }

    #category-list li .cat-name {
        flex-grow: 1;
        font-weight: 600;
        color: #444;
        font-size: 1rem;
    }

    #category-list li::after {
        content: "\203A";
        /* Chevron symbol */
        font-size: 1.4rem;
        color: #ff8fa3;
        margin-left: 10px;
    }

    /* Main Content (Feed) Adjustments */
    .content-area {
        width: 100% !important;
        padding: 0 !important;
        margin-top: 30px;
    }

    .post-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .post-card {
        background: white !important;
        border-radius: 20px !important;
        border: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04) !important;
        overflow: hidden;
    }

    .post-card .post-title {
        color: #333 !important;
        font-weight: 700 !important;
    }

    /* Hide PC elements on mobile */
    .hero-nav,
    .search-bar,
    .bgm-player {
        display: none !important;
    }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 75px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 143, 163, 0.1);
        z-index: 1000;
        padding: 0 20px;
        align-items: center;
        justify-content: space-around;
        box-shadow: 0 -5px 25px rgba(255, 143, 163, 0.1);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: #bbb;
        text-decoration: none;
        flex: 1;
        transition: all 0.3s ease;
    }

    .mobile-bottom-nav .nav-item svg {
        transition: transform 0.3s ease;
    }

    .mobile-bottom-nav .nav-item:active svg {
        transform: scale(0.85);
    }

    .mobile-bottom-nav .nav-item.active {
        color: #ff8fa3;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 0.7rem;
        font-weight: 600;
    }
}

/* PC Protection: Hide mobile-only elements by default */
.mobile-hub-header,
.mobile-welcome-banner,
.mobile-bottom-nav {
    display: none !important;
}