/* ============================================
   Daddy Casino — Main Stylesheet
   Mobile First · Dark Theme · Purple Accent
   ============================================ */

/* === VARIABLES (used via PHP in markup, repeated here for pure-CSS) === */
:root {
    --bg: #0f172a;
    --bg-card: #1e293b;
    --bg-card-alt: #334155;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #8b5cf6;
    --accent-hover: #7c3aed;
    --success: #22c55e;
    --border: #334155;
    --yellow: #facc15;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
.section { padding: 56px 0; }
.section-title {
    font-size: 1.75rem; font-weight: 700; margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 680px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-full { max-width: 100%; }

/* === HEADER === */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.3rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; color: #fff;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(139, 92, 246, 0.15); }
.nav a.active { color: var(--accent); }
.header-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-size: 0.85rem; font-weight: 600;
    padding: 9px 20px; border-radius: 10px; border: none;
    cursor: pointer; transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,92,246,0.4); color: #fff; }
.burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }

/* === MOBILE NAV === */
.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--text); font-size: 1.2rem; font-weight: 600;
    padding: 14px 32px; border-radius: 12px; transition: all .2s;
}
.mobile-nav a:hover { background: rgba(139, 92, 246, 0.15); color: var(--accent); }
.mobile-nav-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: #fff; cursor: pointer; }

/* === CARD === */
.card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; transition: border-color .3s, box-shadow .3s;
}
.card:hover { border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 4px 24px rgba(0,0,0,0.2); }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.95rem; font-weight: 600; padding: 13px 28px;
    border-radius: 12px; border: none; cursor: pointer;
    transition: all .25s; text-decoration: none; line-height: 1.4;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(139,92,246,0.45); color: #fff; }
.btn-outline {
    background: transparent; color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: rgba(139, 92, 246, 0.1); color: var(--accent); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }

/* === BADGE === */
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; padding: 5px 12px;
    border-radius: 20px; background: rgba(139, 92, 246, 0.15); color: var(--accent);
}
.badge-success { background: rgba(34, 197, 94, 0.15); color: var(--success); }

/* === PULSE DOT === */
.pulse-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--success);
    display: inline-block; position: relative;
}
.pulse-dot::before {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    background: var(--success); opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.8); opacity: 0; } }

/* === HERO === */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, transparent 60%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 {
    font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

/* === STATUS WIDGET === */
.status-widget {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 10px 20px; border-radius: 12px; font-size: 0.9rem;
}
.status-widget strong { color: var(--success); }

/* === TABLE === */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 14px 0; font-size: 0.95rem; vertical-align: top; }
.info-table td:first-child { color: var(--text-muted); white-space: nowrap; padding-right: 20px; width: 180px; }
.info-table td:last-child { font-weight: 500; }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* === BONUS CARD === */
.bonus-card { display: flex; flex-direction: column; gap: 12px; }
.bonus-card-header { display: flex; align-items: center; gap: 12px; }
.bonus-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(139, 92, 246, 0.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bonus-card-amount { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.bonus-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
    background: none; border: none; color: var(--text); width: 100%; text-align: left;
}
.faq-question::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--accent);
    transition: transform .3s; flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* === REVIEW === */
.review-card { display: flex; flex-direction: column; gap: 10px; }
.review-header { display: flex; align-items: center; justify-content: space-between; }
.review-author { font-weight: 600; font-size: 1rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.stars { display: inline-flex; gap: 2px; color: var(--yellow); }

/* === PROMO CODE === */
.promo-code {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-card-alt); border: 1px dashed var(--accent);
    padding: 16px 20px; border-radius: 12px; margin-bottom: 12px;
}
.promo-code-value { font-family: 'Courier New', monospace; font-size: 1.1rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; }
.promo-code-desc { font-size: 0.85rem; color: var(--text-muted); }
.promo-code-copy {
    background: rgba(139,92,246,0.15); border: none; color: var(--accent);
    padding: 8px 12px; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.promo-code-copy:hover { background: rgba(139,92,246,0.3); }

/* === STEPS === */
.steps { counter-reset: step; }
.step {
    display: flex; gap: 20px; padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
    counter-increment: step; flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(139, 92, 246, 0.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}
.step-number::before { content: counter(step); }
.step-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === CONTENT BLOCKS === */
.content-block { margin-bottom: 20px; }
.content-block h3 {
    font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: var(--text);
}
.content-block p,
.content-block ul {
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
}
.content-block p + p { margin-top: 12px; }
.content-block ul { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.content-block li { display: flex; gap: 10px; align-items: flex-start; }
.content-block li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

/* === ICON BOX === */
.icon-box {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; flex-shrink: 0;
}
.icon-box--accent { background: rgba(139,92,246,0.15); color: var(--accent); }
.icon-box--success { background: rgba(34,197,94,0.15); color: var(--success); }
.icon-box--yellow { background: rgba(250,204,21,0.15); color: var(--yellow); }
.icon-box--sm { width: 48px; height: 48px; border-radius: 12px; margin: 0; }

/* === PROVIDER TAG === */
.provider-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-card-alt); padding: 8px 16px;
    border-radius: 10px; font-size: 0.85rem; font-weight: 500;
    color: var(--text-muted); border: 1px solid var(--border);
    transition: border-color .2s;
}
.provider-tag:hover { border-color: var(--accent); color: var(--text); }

/* === PAYMENT GRID === */
.payment-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px; text-align: center;
    transition: border-color .2s;
}
.payment-item:hover { border-color: rgba(139,92,246,0.3); }
.payment-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.payment-item-type { font-size: 0.75rem; color: var(--text-muted); }

/* === FOOTER === */
.footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.footer-payment-badge {
    background: var(--bg-card-alt); padding: 6px 12px;
    border-radius: 8px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
}
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.responsible-gaming {
    background: rgba(250, 204, 21, 0.08); border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 12px; padding: 20px; margin-bottom: 32px;
}
.responsible-gaming h4 { color: var(--yellow); font-size: 0.95rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.responsible-gaming p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* === BREADCRUMBS === */
.breadcrumbs {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding: 16px 0; font-size: 0.85rem;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-muted); }
.breadcrumbs .sep { color: var(--border); }

/* === LAST CHECK (Быстробот) === */
.last-check {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--text-muted);
    background: var(--bg-card); padding: 6px 14px; border-radius: 8px;
    margin-top: 12px;
}

/* === INLINE HELPERS === */
.bg-card-section { background: var(--bg-card); }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.flex-col { display: flex; flex-direction: column; }
.self-start { align-self: flex-start; }
.color-accent { color: var(--accent); }
.color-muted { color: var(--text-muted); }
.color-success { color: var(--success); }
.color-yellow { color: var(--yellow); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 0.88rem; }
.fs-md { font-size: 0.95rem; }
.lh-18 { line-height: 1.8; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .header-cta.desktop-only { display: none; }
    .burger { display: block; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 1rem; }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.4rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .info-table td:first-child { width: 130px; font-size: 0.85rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .container { padding: 0 14px; }
}
@media (max-width: 380px) {
    html { font-size: 15px; }
    .hero h1 { font-size: 1.55rem; }
}
