/* PUNCHMADEIT MOBILE-CORE V6 */
:root[data-theme="dark"] {
    --bg: #000000;
    --card: #121212;
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --accent: #00ff66;
}

:root[data-theme="light"] {
    --bg: #ffffff;
    --card: #f9f9f9;
    --border: rgba(0, 0, 0, 0.05);
    --text: #000000;
    --accent: #008a37;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, system-ui, sans-serif;
    margin: 0;
    padding-bottom: 90px; /* Crucial for the bottom dock */
    -webkit-font-smoothing: antialiased;
}

/* THE BOTTOM DOCK - REAL BUTTONS */
.bottom-dock {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 70px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

:root[data-theme="light"] .bottom-dock {
    background: rgba(255, 255, 255, 0.8);
}

.dock-btn {
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
}

.dock-btn.active { color: var(--accent); }

.dock-btn span {
    font-size: 9px;
    font-weight: 800;
    margin-top: 4px;
    text-transform: uppercase;
}

/* PREMIUM POST CARDS */
.feed-card {
    background: var(--card);
    margin: 15px;
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 20px;
    overflow: hidden;
}

.media-frame {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 15px;
    margin-bottom: 15px;
    background: #000;
}

.media-frame img, .media-frame video { width: 100%; display: block; }