:root {
    --deep-void: #0B0616;
    --midnight-plum: rgba(26, 15, 46, 0.6);
    --pink-holo: #FF2A85;
    --cyan-mystic: #00F5FF;
    --violet-cosmic: #9D4EDD;
    --rose-gold: #E0BFB8;
    --text-main: #F8F9FA;
    --text-muted: #A098AE;
    
    /* Categorization Glows */
    --glow-love: #FF2A85;
    --glow-wealth: #d4af37;
    --glow-health: #00ff88;
    --glow-lust: #00f5ff;
    --glow-war: #ff4d4d;
    --glow-default: #9D4EDD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--deep-void);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--deep-void);
}
::-webkit-scrollbar-thumb {
    background: var(--midnight-plum);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink-holo);
}

h1, h2, h3, .heading-font {
    font-family: 'Cinzel', serif;
}

/* --- BACKGROUND MAGIC --- */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: float 10s infinite alternate ease-in-out;
    pointer-events: none;
}
.light-1 {
    width: 400px; height: 400px;
    background: rgba(255, 42, 133, 0.15);
    top: -100px; left: -100px;
}
.light-2 {
    width: 500px; height: 500px;
    background: rgba(0, 245, 255, 0.1);
    bottom: -200px; right: -100px;
    animation-delay: -5s;
}
.light-3 {
    width: 300px; height: 300px;
    background: rgba(157, 78, 221, 0.15);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

/* --- NAVBAR --- */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(224, 191, 184, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 6, 22, 0.7);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.logo span { color: var(--pink-holo); }

nav { display: flex; gap: 2rem; }
nav a {
    color: var(--rose-gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
}
nav a:hover, nav a.active {
    color: var(--cyan-mystic);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyan-mystic);
    box-shadow: 0 0 10px var(--cyan-mystic);
}

/* --- SPA PAGES SETUP --- */
.page {
    display: none;
    animation: fadeIn 0.5s ease forwards;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.page.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION (HOME) --- */
.home-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 70vh;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content h1 span {
    background: linear-gradient(45deg, var(--cyan-mystic), var(--pink-holo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.pracy-avatar {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,42,133,0.2), rgba(0,245,255,0.2));
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
/* Efeito de anel mágico em volta da foto */
.magic-ring {
    position: absolute;
    width: 380px; height: 480px;
    border-radius: 25px;
    border: 2px dashed var(--pink-holo);
    animation: rotateRing 20s linear infinite;
    opacity: 0.5;
    z-index: 1;
}
@keyframes rotateRing {
    100% { transform: rotate(360deg); }
}

/* --- BOTÕES --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(45deg, var(--pink-holo), var(--violet-cosmic));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 42, 133, 0.4);
    margin-right: 1rem;
}
.btn-primary:hover {
    box-shadow: 0 5px 30px rgba(255, 42, 133, 0.7);
    transform: translateY(-3px);
}
.btn-secondary {
    background: transparent;
    border: 1px solid var(--cyan-mystic);
    color: var(--cyan-mystic);
}
.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

/* --- HEADERS DAS PÁGINAS INTERNAS --- */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}
.page-header h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.page-header p {
    color: var(--rose-gold);
    max-width: 600px;
    margin: 0 auto;
}

/* --- CARDS E IMAGENS --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.glass-card {
    background: var(--midnight-plum);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    position: relative;
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.panteao-card:hover { border-color: rgba(0, 245, 255, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 15px rgba(0, 245, 255, 0.1); }
.panteao-card:nth-child(2):hover { border-color: rgba(255, 42, 133, 0.4); box-shadow: inset 0 0 15px rgba(255, 42, 133, 0.1); }

.sigil-container {
    width: 120px; height: 120px;
    margin: 0 auto 1.5rem;
    position: relative; z-index: 1;
}
.sigil-container svg {
    width: 100%; height: 100%;
    stroke: var(--rose-gold); stroke-width: 2; fill: none; transition: 0.5s;
}
.panteao-card:hover .sigil-container svg { stroke: var(--cyan-mystic); filter: drop-shadow(0 0 10px var(--cyan-mystic)); transform: rotate(5deg) scale(1.05); }
.panteao-card:nth-child(2):hover .sigil-container svg { stroke: var(--pink-holo); filter: drop-shadow(0 0 10px var(--pink-holo)); }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1rem 0; }
.tag { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(224, 191, 184, 0.2); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; color: var(--rose-gold); }

/* Placeholders para as Imagens dos Cursos */
.course-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: rgba(0,0,0,0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

/* Modificadores de cor para os placeholders */
.course-image.goetia { border-color: var(--cyan-mystic); color: var(--cyan-mystic); background: linear-gradient(180deg, rgba(0, 245, 255, 0.05), transparent); }
.course-image.caos { border-color: var(--pink-holo); color: var(--pink-holo); background: linear-gradient(180deg, rgba(255, 42, 133, 0.05), transparent); }
.course-image.tarot { border-color: var(--violet-cosmic); color: var(--violet-cosmic); background: linear-gradient(180deg, rgba(157, 78, 221, 0.05), transparent); }
.course-image.defesa { border-color: var(--rose-gold); color: var(--rose-gold); background: linear-gradient(180deg, rgba(224, 191, 184, 0.05), transparent); }

/* --- MENU DOS 72 DAEMONS --- */
.daemons-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.daemon-link-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 191, 184, 0.1);
    color: var(--rose-gold);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.daemon-link-btn span {
    font-size: 0.8rem;
    color: var(--pink-holo);
    opacity: 0.7;
}
.daemon-link-btn:hover {
    background: rgba(255, 42, 133, 0.1);
    border-color: var(--pink-holo);
    color: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 42, 133, 0.2);
}

/* --- DAEMON MODAL DETAIL --- */
.daemon-modal-large {
    max-width: 1000px;
    width: 95%;
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.daemon-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    text-align: left;
}
.daemon-image-section {
    position: sticky;
    top: 0;
    text-align: center;
}
.daemon-seal-img {
    width: 100%;
    max-width: 250px;
    background: #FFFFFF;
    border-radius: 50%;
    margin-bottom: 2rem;
    transition: 0.3s;
    /* Default glow se não tiver categoria específica */
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.6)) brightness(1.1);
}

.glow-love   { filter: drop-shadow(0 0 20px rgba(255, 42, 133, 0.6)) brightness(1.1); }
.glow-wealth { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)) brightness(1.2); }
.glow-health { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6)) brightness(1.1); }
.glow-lust   { filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6)) brightness(1.1); }
.glow-war    { filter: drop-shadow(0 0 20px rgba(255, 77, 77, 0.6)) brightness(1.1); }

.daemon-seal-img:hover {
    filter: drop-shadow(0 0 35px var(--text-main)) brightness(1.3);
}
.daemon-enn {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--cyan-mystic);
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}
.daemon-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-block h4 {
    color: var(--rose-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(224, 191, 184, 0.1);
    display: inline-block;
}
.info-block p {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1rem;
}
.glass-accent {
    background: rgba(157, 78, 221, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

/* --- COMMENTS SECTION --- */
.daemon-comments-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-form {
    margin-bottom: 3rem;
}

.comment-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .comment-input-grid { grid-template-columns: 1fr; }
}

.comment-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--pink-holo);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.comment-name {
    color: var(--cyan-mystic);
    font-weight: 600;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.comment-content {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
}

.anonymous-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--rose-gold);
}
.anonymous-toggle label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.captcha-question {
    background: var(--midnight-plum);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    color: var(--pink-holo);
    border: 1px solid rgba(255, 42, 133, 0.2);
}

/* --- SEARCH & INPUTS --- */
.glass-input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(224, 191, 184, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    transition: 0.3s;
}
.glass-input:focus {
    outline: none;
    border-color: var(--cyan-mystic);
    background: rgba(0, 245, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.close-btn:hover { color: var(--pink-holo); }

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .daemon-detail-grid { grid-template-columns: 1fr; }
    .daemon-image-section { position: relative; top: 0; }
    .daemon-seal-img { max-width: 180px; }
    .daemon-modal-large { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .home-hero { flex-direction: column; text-align: center; }
    .logo { font-size: 1.2rem; }
}

/* --- ADMIN DASHBOARD & MODAL --- */
.hidden { display: none !important; }

/* Modal Styles */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.modal-content {
    width: 90%;
    animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

#admin-password, #prompt-editor, #input-budget, #select-agent {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    margin-bottom: 1.5rem;
}
#prompt-editor {
    min-height: 300px;
    resize: vertical;
}

/* Admin Grid & Stats */
.stat-card {
    border-left: 2px solid var(--cyan-mystic);
}
.stat-card:nth-child(2) { border-left-color: var(--pink-holo); }
.stat-card:nth-child(3) { border-left-color: var(--rose-gold); }

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}
.btn-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: 0.3s;
}
.btn-tab.active {
    color: var(--cyan-mystic);
    border-bottom: 2px solid var(--cyan-mystic);
}

.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}

.log-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.log-table th {
    text-align: left;
    padding: 1rem;
    color: var(--rose-gold);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.log-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.log-table tr:hover { background: rgba(255,255,255,0.02); }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--rose-gold);
    font-size: 0.9rem;
}
/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: float-wa 3s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #25d366;
}

@keyframes float-wa {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* --- GRIMÓRIO PREMIUM --- */
.grimorio-index-container {
    animation: fadeIn 0.8s ease-out;
}

.article-list {
    margin-top: 2rem;
}

.articles-grid {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-item-premium {
    background: rgba(11, 6, 22, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.article-item-premium:hover {
    border-color: var(--cyan-mystic);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 245, 255, 0.1);
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.article-body h2, .article-body h3 {
    font-family: 'Cinzel', serif;
    color: var(--cyan-mystic);
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body strong {
    color: var(--pink-holo);
    font-weight: 600;
}

.article-body blockquote {
    border-left: 3px solid var(--pink-holo);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--rose-gold);
    background: rgba(255, 42, 133, 0.03);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

/* ARTICLE VIEW (BLOG STYLE) */
.article-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 3rem;
    text-align: left;
}

.article-banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.article-blog-view .article-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.article-blog-view .article-header h1 {
    font-size: 3rem;
    color: var(--cyan-mystic);
    margin: 1rem 0;
    line-height: 1.1;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.article-body {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-body h2, .article-body h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--pink-holo);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-share {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-meta .date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .article-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    .article-blog-view .article-header h1 {
        font-size: 2rem;
    }
    .article-body {
        font-size: 1.1rem;
    }
}



/* FIX TABLE OVERLAP */
.log-table { width: 100% !important; table-layout: auto !important; }
.log-table th { white-space: nowrap !important; }
.log-table td { padding: 0.8rem 1rem !important; }
.log-table td:first-child { max-width: 250px; overflow: hidden; text-overflow: ellipsis; }

.log-table .btn-primary, .log-table .btn-secondary { font-size: 0.65rem !important; padding: 0.4rem 0.6rem !important; }
.log-table .tag { font-size: 0.65rem !important; max-width: 150px !important; overflow: hidden; text-overflow: ellipsis; }

/* --- UTILS --- */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 1000px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

.ad-container {
    width: 100%;
    margin: 2rem 0;
    clear: both;
}

.ad-placement-daemon-enn {
    margin-top: 1.5rem;
}

.ad-placement-daemon-side {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
