/**
 * Daddy Casino - Уникальные стили
 * Тёмная тема с красно-оранжевыми акцентами
 */

:root {
    --bg-dark: #0c0a09;
    --bg-card: #1c1917;
    --bg-elevated: #292524;
    --text-primary: #fafaf9;
    --text-secondary: #a8a29e;
    --text-muted: #78716c;
    --accent-red: #dc2626;
    --accent-red-dark: #991b1b;
    --accent-orange: #f59e0b;
    --accent-green: #22c55e;
    --border-color: #44403c;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-red);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    color: #fff;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d97706 100%);
    color: #000;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.btn-outline:hover {
    background: var(--accent-red);
    color: #fff;
}

.btn-success {
    background: var(--accent-green);
    color: #fff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-list a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.header-cta svg {
    width: 18px;
    height: 18px;
}

.header-cta:hover {
    color: #fff;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.h1-main {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.h1-brand {
    display: block;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.h1-sub {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bonus Card */
.hero-card {
    position: relative;
}

.bonus-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220,38,38,0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-orange);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
}

.card-value {
    margin-bottom: 12px;
}

.card-value .percent {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
}

.card-value .amount {
    font-size: 22px;
    color: var(--text-secondary);
}

.card-extra {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.card-extra .plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
}

.card-extra .spins {
    font-size: 15px;
    font-weight: 600;
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.card-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
}

/* ==========================================================================
   MIRROR STATUS
   ========================================================================== */

.mirror-status {
    padding: 40px 0;
}

.status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse {
    position: relative;
    width: 14px;
    height: 14px;
    background: var(--accent-green);
    border-radius: 50%;
}

.pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--accent-green);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0; }
}

.status-text {
    font-weight: 600;
    color: var(--accent-green);
}

.status-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.accent {
    color: var(--accent-red);
}

/* Mirror Section */
.mirror-section {
    padding: 80px 0;
}

.mirror-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mirror-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mirror-content {
    position: relative;
    z-index: 1;
}

.mirror-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.mirror-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.mirror-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mirror-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
}

.mirror-content .btn svg {
    width: 18px;
    height: 18px;
}

.mirror-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.mf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-weight: 600;
    white-space: nowrap;
}

.mf-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .mirror-block {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .mirror-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .mf-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .mirror-content h2 {
        font-size: 26px;
    }
}

/* About Section */
.about-section {
    background: var(--bg-card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 17px;
}

.about-text strong {
    color: var(--text-primary);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    color: var(--text-muted);
    font-size: 14px;
}

.info-table td:last-child {
    font-weight: 600;
    text-align: right;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-red);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Bonuses Section */
.bonuses-section {
    background: var(--bg-card);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bonus-item {
    position: relative;
    padding: 28px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.bonus-item.featured {
    border-color: var(--accent-orange);
}

.bonus-ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    padding: 6px 16px;
    background: var(--accent-orange);
    color: #000;
    font-size: 12px;
    font-weight: 700;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bonus-header h3 {
    font-size: 16px;
}

.bonus-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--bg-elevated);
    color: var(--text-muted);
}

.bonus-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
}

.bonus-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.bonus-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.bonus-details code {
    padding: 4px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    color: var(--accent-orange);
}

/* Guide Section */
.guide-steps {
    max-width: 700px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.guide-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
}

.step-content code {
    padding: 2px 8px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    color: var(--accent-orange);
}

.guide-cta {
    text-align: center;
    margin-top: 40px;
}

/* Providers Section */
.providers-section {
    background: var(--bg-card);
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.provider-tag {
    padding: 10px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-section.compact {
    padding: 40px 0;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

.page-header {
    padding: 40px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs svg {
    width: 14px;
    height: 14px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.page-header > .container > p {
    color: var(--text-secondary);
}

/* Mirror Access */
.mirror-access {
    padding: 60px 0;
}

.access-card {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-green);
}

.access-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.access-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.access-card > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.security-badges svg {
    width: 16px;
    height: 16px;
}

/* Mirror Info */
.mirror-info {
    padding: 60px 0;
    background: var(--bg-card);
}

.mirror-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.mirror-info > .container > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-box {
    padding: 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Main Bonus */
.main-bonus {
    padding: 60px 0;
}

.main-bonus-card {
    position: relative;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-orange);
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-orange);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 24px;
}

.main-bonus-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.bonus-numbers {
    margin-bottom: 12px;
}

.bonus-numbers .big {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
}

.bonus-numbers .sub {
    font-size: 24px;
    color: var(--text-secondary);
}

.bonus-extra {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 28px;
}

.bonus-terms {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    list-style: none;
}

.bonus-terms li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.bonus-terms svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
}

.promo-code-block {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.promo-code-block code {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
}

.promo-code-block .copy-btn {
    padding: 8px 16px;
    background: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}

/* All Bonuses */
.all-bonuses {
    padding: 60px 0;
    background: var(--bg-card);
}

.all-bonuses h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.bonus-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.bonus-meta code {
    color: var(--accent-orange);
}

/* Promo Codes Table */
.promo-codes {
    padding: 60px 0;
}

.promo-codes h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.codes-table-wrap {
    overflow-x: auto;
}

.codes-table {
    width: 100%;
    border-collapse: collapse;
}

.codes-table th,
.codes-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.codes-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.codes-table code {
    padding: 6px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    color: var(--accent-orange);
    font-weight: 600;
}

/* App Download */
.app-download {
    padding: 60px 0;
}

.app-card {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
}

.app-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.app-features {
    list-style: none;
    margin-bottom: 28px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.app-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.app-requirements h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.req-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-item {
    padding: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
}

.req-item strong {
    display: block;
    margin-bottom: 8px;
}

.req-item span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

/* Install Guide */
.install-guide {
    padding: 60px 0;
    background: var(--bg-card);
}

.install-guide h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
}

.step .num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-red);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step p {
    color: var(--text-secondary);
}

/* Rating Summary */
.rating-summary {
    padding: 60px 0;
}

.rating-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
}

.rating-big {
    text-align: center;
    padding-right: 48px;
    border-right: 1px solid var(--border-color);
}

.rating-num {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.rating-stars {
    font-size: 24px;
    color: var(--accent-orange);
    margin: 8px 0;
}

.rating-count {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.rating-text p {
    color: var(--text-secondary);
}

/* Reviews List */
.reviews-list {
    padding: 60px 0;
    background: var(--bg-card);
}

.reviews-list h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    padding: 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    font-size: 14px;
    color: var(--text-muted);
}

.review-rating .stars {
    color: var(--accent-orange);
}

.review-text {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    padding: 60px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links h4,
.footer-info h4,
.footer-payments h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.footer-links ul,
.footer-info ul {
    list-style: none;
}

.footer-links li,
.footer-info li {
    padding: 6px 0;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-info li {
    font-size: 14px;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    padding: 6px 12px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-responsible {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.footer-responsible svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

.footer-responsible p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 12px;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }
    
    .main-nav.open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .h1-brand {
        font-size: 40px;
    }
    
    .h1-sub {
        font-size: 22px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .features-grid,
    .bonuses-grid,
    .info-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .status-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .app-card {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-big {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bonus-terms {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .h1-brand {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .bonus-card {
        padding: 24px;
    }
    
    .card-value .percent {
        font-size: 44px;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 24px;
    }
}

