:root {
    --bg-main: #0a0f0d;
    --bg-card: rgba(255, 255, 255, 0.035);
    --border-soft: rgba(255, 255, 255, 0.08);
    --primary: #2d6a4f;
    --primary-hover: #327355;
    --accent: #74c69d;
    --neon-green: #00ff8c;
    --warning-bg: rgba(255, 193, 7, 0.08);
    --warning-border: #ffc107;
    --warning-text: #ffe9a6;
    --text-main: #ffffff;
    --text-muted: #9aa3a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1050px; margin: auto; padding: 25px; }

header {
    background: rgba(10,15,13,0.98);
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 0;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 24px; font-weight: 900; color: inherit; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }

nav { display: flex; gap: 25px; }
nav a { font-weight: 600; color: white; font-size: 15px; text-decoration: none; transition: 0.2s; }
nav a:hover { color: var(--accent); }

/* HERO - FULD BREDDE STREG FIX */
.hero { 
    padding: 70px 0 50px; 
    border-bottom: 1px solid var(--border-soft);
    width: 100%;
    margin-bottom: 40px;
}
.hero-inner { max-width: 1050px; margin: 0 auto; padding: 0 25px; }
.hero h1 { font-size: 42px; font-weight: 700; line-height: 1.1; margin-bottom: 18px; letter-spacing: -1px; }
.hero .brand, .hero .year { color: var(--accent); }
.hero p { color: var(--text-muted); font-size: 19px; }

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    padding: 35px;
    margin-bottom: 25px;
}
.featured-box { border-left: 4px solid var(--primary); }

.seo-link, .content-card a { 
    color: var(--accent); 
    text-decoration: underline; 
    font-weight: 500; 
    transition: 0.2s;
}
.seo-link:hover, .content-card a:hover { color: #fff; }

.content-card ul { list-style: none; margin: 20px 0; }
.content-card ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.content-card ul li::before {
    content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 7px;
    border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}

/* ACCORDION DESIGN TIL SEO SIDER */
.faq-item { border-bottom: 1px solid var(--border-soft); background: rgba(255,255,255,0.01); margin-bottom: 8px; }
.faq-question {
    width: 100%; padding: 22px 15px; background: none; border: none; color: #fff;
    text-align: left; font-size: 17px; font-weight: 500; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { font-size: 18px; color: var(--accent); transition: 0.3s ease; width: 24px; text-align: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 15px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 25px; }

/* CASINO DEALS GRID */
.deals-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.update-box {
    font-size: 12px; padding: 6px 14px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft); border-radius: 4px; color: #8fffc3;
}
.dot { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; display: inline-block; margin-right: 5px; }

.deal-card {
    background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 4px;
    padding: 20px 25px; margin-bottom: 16px; display: grid;
    grid-template-columns: 250px 1fr auto; align-items: center; gap: 20px;
}
.deal-card.featured { 
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.12);
}
.deal-title { display: flex; align-items: center; gap: 10px; }
.casino-logo { height: 32px; width: auto; max-width: 140px; object-fit: contain; display: block; }

.badge.most-selected {
    background: rgba(0, 255, 140, 0.15); color: var(--neon-green); padding: 3px 8px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; border-radius: 2px;
}

.deal-meta { display: flex; flex-wrap: wrap; gap: 15px; }
.deal-meta span { font-size: 14px; color: var(--text-muted); white-space: nowrap; }

.cta-button {
    display: inline-block; background: var(--primary); color: white !important;
    padding: 10px 22px; border-radius: 4px; font-weight: 700; text-decoration: none !important;
    transition: background 0.2s ease; text-transform: uppercase; font-size: 13px;
}
.cta-button:hover { background: var(--primary-hover); }

.info-box, .responsible {
    background: var(--warning-bg); border: 1px solid rgba(255, 193, 7, 0.15);
    border-left: 4px solid var(--warning-border); padding: 20px; border-radius: 4px;
    margin-bottom: 30px; font-size: 14px; color: var(--warning-text);
}
.info-box a, .responsible a { color: var(--warning-border); font-weight: 400; text-decoration: underline; }

..internal-next-link {
    margin-top: 60px; /* Masser af luft for at adskille fra artiklen */
    margin-bottom: 10px;
    text-align: left;
    font-size: 15px;
    color: var(--text-muted);
}

.internal-next-link {
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.015); /* Meget subtil baggrund */
    border: 1px dashed var(--border-soft); /* Den stiplede 'utility' ramme */
    border-radius: 4px;
    text-align: left; /* Venstrestillet som ønsket */
    font-size: 15px;
    color: var(--text-muted);
}

.internal-next-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline; /* Bevarer det tydelige SEO-link look */
    transition: color 0.2s ease;
}

.internal-next-link a:hover {
    color: var(--text-main);
}

footer { padding: 60px 0; border-top: 1px solid var(--border-soft); text-align: center; color: var(--text-muted); }
.footer-links { margin-top: 15px; }
.footer-links a { color: white; font-weight: 600; font-size: 15px; margin: 0 12px; text-decoration: none; }

@media (max-width: 900px) {
    .deal-card { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 15px; }
    .deal-title { flex-direction: column; }
}