/* ========================================
   MaraSit.com - Social Casino DE
   Premium / Luxury style
   Colors: Dark + Gold accent
   Typography: Playfair Display + Source Sans 3
   ======================================== */

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

:root {
    --vs-black: #141210;
    --vs-dark: #1c1917;
    --vs-card: #292524;
    --vs-gold: #d4a853;
    --vs-gold-light: #e8c97a;
    --vs-silver: #a8a29e;
    --vs-white: #fafaf9;
    --vs-success: #22c55e;
    --vs-danger: #dc2626;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    --header-h: 72px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
    :root { --header-h: 60px; }
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw;
    font-family: var(--font-body);
    color: var(--vs-white);
    background: var(--vs-black);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
.vs-main h1, .vs-main h2, .vs-main h3 { text-align: center; }
.vs-disclaimer h3, .vs-disclaimer .vs-disclaimer__title { text-align: center; }
.vs-modal h2 { text-align: center; }
.vs-footer h3, .vs-footer h4 { text-align: center; }
.vs-footer__col:first-child { text-align: left; }
.vs-footer__col:first-child h3 { text-align: left; }
.vs-footer__col:last-child { text-align: right; }
.vs-footer__col:last-child h3 { text-align: right; }
a { text-decoration: none; color: inherit; transition: color 0.2s, opacity 0.2s; }
img { max-width: 100%; height: auto; display: block; }

.vs-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.vs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(20, 18, 16, 0.97);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.vs-header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.vs-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--vs-gold);
    flex-shrink: 0;
}
.vs-logo-badge {
    background: var(--vs-success);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.vs-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0.75rem;
    margin-left: 0.75rem;
    border-left: 1px solid rgba(212, 168, 83, 0.35);
}
.vs-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.vs-nav-link {
    color: var(--vs-silver);
    font-size: 0.95rem;
}
.vs-nav-link:hover { color: var(--vs-gold); }

.vs-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(212, 168, 83, 0.35);
}
.vs-burger span {
    width: 24px;
    height: 2px;
    background: var(--vs-gold);
    border-radius: 1px;
}

.vs-mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vs-dark);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
}
.vs-mobile-menu.state-open { display: block; }
.vs-mobile-menu ul { list-style: none; }
.vs-mobile-menu a {
    display: block;
    padding: 0.85rem;
    color: var(--vs-white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vs-mobile-menu a:hover { color: var(--vs-gold); }

@media (max-width: 899px) {
    .vs-nav { display: none; }
    .vs-burger { display: flex; }
}

/* Main */
.vs-main { margin-top: var(--header-h); min-height: calc(100vh - var(--header-h)); }

/* Hero */
.vs-hero {
    padding-top: 102px;
    padding-bottom: 2.6rem;
    min-height: auto;
    background: linear-gradient(160deg, var(--vs-dark) 0%, var(--vs-black) 60%);
    background-attachment: scroll;
    text-align: center;
}
@media (max-width: 600px) {
    .vs-hero { margin-top: 0; padding-top: 85px; }
}
.vs-hero h1 { font-size: clamp(2.37rem, 5vw, 3.1rem); color: var(--vs-gold); margin-bottom: 0.45rem; }
.vs-hero .vs-hero-sub { font-size: clamp(1.52rem, 3.4vw, 1.78rem); color: var(--vs-silver); margin-bottom: 0.85rem; text-align: center; }
.vs-hero .vs-hero-desc { max-width: 676px; margin: 0 auto 1.3rem; font-size: 1.1rem; color: var(--vs-silver); text-align: center; }
.vs-hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
.vs-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vs-btn-primary { background: var(--vs-gold); color: var(--vs-black); }
.vs-btn-primary:hover { background: var(--vs-gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,83,0.35); }
.vs-btn-secondary { background: transparent; color: var(--vs-gold); border: 2px solid var(--vs-gold); }
.vs-btn-secondary:hover { background: rgba(212,168,83,0.15); }

/* Sections */
.vs-section { padding: 3rem 0; }
.vs-section-title { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--vs-white); }
.vs-section-sub { color: var(--vs-silver); margin-bottom: 1.5rem; text-align: center; }

/* Benefits */
.vs-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.vs-benefit-card {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--vs-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(212,168,83,0.15);
    box-shadow: var(--shadow);
}
.vs-benefit-card .vs-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.vs-benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--vs-gold); }
.vs-benefit-card p { font-size: 0.9rem; color: var(--vs-silver); }

/* Games grid */
.vs-games { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.vs-game-card {
    flex: 1 1 280px;
    max-width: 340px;
    background: var(--vs-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212,168,83,0.12);
    display: flex;
    flex-direction: column;
}
.vs-game-thumb {
    aspect-ratio: 1;
    background: var(--vs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.vs-game-thumb img { width: 100%; max-width: 200px; height: auto; object-fit: contain; }
.vs-game-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.vs-game-info h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--vs-white); }
.vs-game-info p { font-size: 0.9rem; color: var(--vs-silver); margin-bottom: 0.75rem; flex: 1; }
.vs-game-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.vs-game-tag { font-size: 0.75rem; padding: 4px 10px; background: rgba(212,168,83,0.2); color: var(--vs-gold); border-radius: 8px; }
.vs-game-tag.vs-free { background: var(--vs-success); color: #fff; }
.vs-game-info .vs-btn { align-self: center; }

@media (min-width: 900px) {
    .vs-benefits { flex-direction: row; }
    .vs-games { flex-direction: row; }
}

/* FAQ */
.vs-faq-section .vs-section-title { text-align: center; }
.vs-faq { max-width: 700px; margin: 0 auto; }
.vs-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.vs-faq-q {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    background: none;
    border: none;
    color: var(--vs-white);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vs-faq-q::after { content: "+"; color: var(--vs-gold); font-size: 1.25rem; }
.vs-faq-item.state-open .vs-faq-q::after { content: "−"; }
.vs-faq-a { padding: 0 0 1rem; display: none; }
.vs-faq-item.state-open .vs-faq-a { display: block; }
.vs-faq-a p { color: var(--vs-silver); font-size: 0.95rem; }

/* Testimonials */
.vs-testimonials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.vs-test-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: var(--vs-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212,168,83,0.1);
}
.vs-test-card .vs-stars { color: var(--vs-gold); margin-bottom: 0.5rem; }
.vs-test-card p { font-size: 0.9rem; color: var(--vs-silver); margin-bottom: 0.5rem; }
.vs-test-card .vs-author { font-size: 0.85rem; color: var(--vs-gold); }

/* Leaderboard */
.vs-leaderboard { max-width: 500px; margin: 0 auto; }
.vs-lead-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem;
    background: var(--vs-card);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255,255,255,0.06);
}
.vs-lead-rank { width: 32px; height: 32px; background: var(--vs-gold); color: var(--vs-black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.vs-lead-name { flex: 1; font-weight: 600; }
.vs-lead-score { color: var(--vs-gold); font-size: 0.9rem; }

/* Disclaimer */
.vs-disclaimer {
    background: linear-gradient(135deg, rgba(212,168,83,0.15) 0%, rgba(220,38,38,0.08) 100%);
    border: 1px solid rgba(212,168,83,0.25);
    padding: 2rem 0;
    margin: 2rem 0 0;
}
.vs-disclaimer .vs-container { text-align: center; }
.vs-disclaimer h3, .vs-disclaimer .vs-disclaimer__title { font-size: 1.15rem; margin-bottom: 1rem; color: var(--vs-gold); }
.vs-disclaimer p, .vs-disclaimer .vs-disclaimer__text { font-size: 0.9rem; color: var(--vs-silver); margin-bottom: 0.75rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.vs-disclaimer__company { font-size: 0.9rem; color: var(--vs-silver); margin-bottom: 0.75rem; }
.vs-disclaimer__logos { margin-top: 1rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; }
.vs-disclaimer__logos img,
.vs-disclaimer__logos .vs-compliance-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
    background: var(--vs-white);
    padding: 6px;
    border-radius: 8px;
    opacity: 0.9;
    border: 1px solid rgba(0,0,0,0.1);
}
.vs-disclaimer__logos img:hover,
.vs-disclaimer__logos .vs-compliance-logo:hover { opacity: 1; }
.vs-disclaimer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
.vs-disclaimer-links a { color: var(--vs-gold); font-weight: 600; }
.vs-disclaimer-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.vs-badge { font-size: 0.8rem; padding: 6px 12px; background: var(--vs-card); border-radius: 8px; color: var(--vs-silver); }

/* Footer */
.vs-footer {
    background: var(--vs-dark);
    border-top: 1px solid rgba(212,168,83,0.15);
    padding: 2.5rem 0 1.5rem;
}
.vs-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (max-width: 700px) {
    .vs-footer-grid { grid-template-columns: 1fr; text-align: center; }
}
.vs-footer h3, .vs-footer h4 { font-size: 1rem; color: var(--vs-gold); margin-bottom: 0.75rem; }
.vs-footer__col { }
.vs-footer__list { list-style: none; margin: 0; padding: 0; }
.vs-footer__list li { margin-bottom: 0.35rem; }
.vs-footer ul { list-style: none; }
.vs-footer a { color: var(--vs-silver); font-size: 0.9rem; }
.vs-footer a:hover { color: var(--vs-gold); }
.vs-footer p { color: var(--vs-silver); font-size: 0.9rem; margin-bottom: 0.5rem; }
.vs-footer-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 8px 16px;
    background: var(--vs-success);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
}
.vs-compliance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.vs-compliance a { display: inline-block; }
.vs-compliance img {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
    background: var(--vs-white);
    padding: 6px;
    border-radius: 8px;
    opacity: 0.9;
    border: 1px solid rgba(0,0,0,0.1);
}
.vs-compliance img:hover { opacity: 1; }
.vs-footer-18 { font-size: 1.25rem; font-weight: 700; color: var(--vs-gold); margin-top: 0.5rem; }
.vs-footer-bottom { text-align: center; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); color: var(--vs-silver); font-size: 0.85rem; }

/* Modals */
.vs-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.vs-modal.state-hidden { display: none; }
.vs-modal-content {
    background: var(--vs-card);
    border: 1px solid var(--vs-gold);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}
.vs-modal h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--vs-gold); }
.vs-modal p { color: var(--vs-silver); margin-bottom: 0.75rem; font-size: 0.95rem; }
.vs-modal-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.vs-modal-btns .vs-btn { min-width: 120px; }

/* Cookie banner */
.vs-cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 340px;
    background: var(--vs-card);
    border: 2px solid var(--vs-gold);
    border-radius: var(--radius);
    padding: 1.25rem;
    z-index: 9999;
    display: none;
}
.vs-cookie.state-visible { display: block; }
@media (max-width: 480px) {
    .vs-cookie { left: 15px; right: 15px; bottom: 15px; max-width: none; }
}
.vs-cookie p { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--vs-silver); }
.vs-cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vs-cookie-btns .vs-btn { font-size: 0.85rem; padding: 0.5rem 1rem; }

/* Page content (inner pages) */
.vs-page { padding: 2rem 0 3rem; }
.vs-page h1 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--vs-gold); }
.vs-page .vs-content { max-width: 720px; margin: 0 auto; }
.vs-page .vs-content p { margin-bottom: 1rem; color: var(--vs-silver); }
.vs-page > .vs-container > p:first-of-type { text-align: center; }
.vs-page .vs-content h2 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; color: var(--vs-white); }

/* Card list (blog, guides, reviews) */
.vs-content-center { text-align: center; }
.vs-article-body { max-width: 720px; margin: 0 auto 2rem; text-align: left; }
.vs-article-body p { color: var(--vs-silver); margin-bottom: 1rem; }
.vs-card-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 900px; margin: 0 auto; }
.vs-card {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--vs-card);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(212,168,83,0.15);
    transition: border-color 0.2s;
}
.vs-card:hover { border-color: var(--vs-gold); }
.vs-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--vs-gold); }
.vs-card__text { font-size: 0.9rem; color: var(--vs-silver); margin: 0; }

/* Forms */
.vs-form-group { margin-bottom: 1rem; }
.vs-form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--vs-silver); }
.vs-form-group input {
    width: 100%;
    max-width: 360px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 8px;
    background: var(--vs-dark);
    color: var(--vs-white);
    font-size: 1rem;
}
.vs-form-group input:focus { outline: none; border-color: var(--vs-gold); }
.vs-form-group textarea {
    width: 100%;
    max-width: 360px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 8px;
    background: var(--vs-dark);
    color: var(--vs-white);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}
.vs-form-group textarea:focus { outline: none; border-color: var(--vs-gold); }
.vs-account .vs-panel .vs-form-group textarea { max-width: 100%; }
.vs-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.vs-account .vs-page h1 { text-align: center; }
.vs-account .vs-tabs { justify-content: center; }
.vs-account .vs-panel { max-width: 720px; margin-left: auto; margin-right: auto; }
.vs-account .vs-panel h2 { text-align: center; }
.vs-account .vs-panel form.vs-content,
.vs-account .vs-panel > .vs-content { display: flex; flex-direction: column; align-items: center; margin-left: auto; margin-right: auto; }
.vs-account .vs-panel .vs-form-group { width: 100%; max-width: 360px; }
.vs-account .vs-panel .vs-form-group label { text-align: center; }
.vs-account .vs-panel .vs-btn { align-self: center; }
.vs-tab {
    padding: 0.6rem 1.2rem;
    background: var(--vs-card);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 8px;
    color: var(--vs-silver);
    cursor: pointer;
    font-size: 0.95rem;
}
.vs-tab:hover { color: var(--vs-gold); }
.vs-tab.state-active { background: rgba(212,168,83,0.2); color: var(--vs-gold); border-color: var(--vs-gold); }
.vs-panel { display: none; }
.vs-panel.state-active { display: block; }
