/* ============================================
   Danskecasinokampagner.com — Minimal Custom Styles
   (Tailwind handles the rest)
   ============================================ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Mobile Nav Menu */
.nav-menu.nav-active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #1a252f;
    flex-direction: column;
    padding: 90px 30px 30px;
    gap: 4px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/* Hamburger animation */
.toggle-active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.toggle-active .hamburger:nth-child(2) {
    opacity: 0;
}
.toggle-active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Casino card fade-in animation */
.casino-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

/* Prose-dark: typography for subpage content */
.prose-dark h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.prose-dark h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose-dark p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prose-dark ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-dark li {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.prose-dark strong {
    color: #e2e8f0;
}

.prose-dark a {
    color: #ff6b7a;
    text-decoration: underline;
}

.prose-dark a:hover {
    color: #ff4757;
}
