/* ========================================
   1Daddy.work - Cosmic Blue Theme
   Fonts: Inter + Poppins
   ======================================== */

/* CSS Variables - Cosmic Blue Palette */
:root {
    /* Colors - Deep Cosmic Theme */
    --dk-bg-deep: #0c0812;
    --dk-bg-dark: #140e1d;
    --dk-bg-surface: #1d1433;
    --dk-bg-surface-hover: #271842;
    --dk-bg-raised: #301e4d;
    
    /* Primary Palette - Blue-Violet Spectrum */
    --dk-primary: #7c5cf8;
    --dk-primary-light: #9c88fc;
    --dk-accent: #5865f9;
    --dk-deep: #6e38f0;
    --dk-bright: #d042f3;
    
    /* Gradients - Cosmic Magic */
    --dk-gradient-primary: linear-gradient(128deg, #5f7bec 0%, #7049a5 100%);
    --dk-gradient-accent: linear-gradient(to right, #7c5cf8, #5865f9);
    --dk-gradient-radial: radial-gradient(circle, rgba(124, 92, 248, 0.18) 0%, transparent 68%);
    --dk-gradient-surface: linear-gradient(138deg, #1d1433 0%, #140e1d 100%);
    
    /* Text Colors */
    --dk-text-primary: #fafafa;
    --dk-text-secondary: #e2e6ea;
    --dk-text-subtle: #96a0ad;
    --dk-text-muted: #646e7d;
    
    /* Borders & Effects */
    --dk-border-dim: rgba(124, 92, 248, 0.17);
    --dk-border-bright: rgba(124, 92, 248, 0.55);
    --dk-glow-primary: 0 0 35px rgba(124, 92, 248, 0.42);
    --dk-glow-accent: 0 0 35px rgba(88, 101, 249, 0.42);
    
    /* Typography */
    --dk-font-title: 'Poppins', sans-serif;
    --dk-font-text: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --dk-container-width: 1320px;
    --dk-section-spacing: 110px;
    --dk-radius-xs: 8px;
    --dk-radius-sm: 14px;
    --dk-radius-md: 22px;
    --dk-radius-lg: 32px;
    
    /* Transitions */
    --dk-ease: cubic-bezier(0.35, 0, 0.25, 1);
    --dk-speed-quick: 0.18s;
    --dk-speed-medium: 0.28s;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: var(--dk-bg-deep);
    color: var(--dk-text-secondary);
    font-family: var(--dk-font-text);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cosmic Background Effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: 
        radial-gradient(ellipse 55% 45% at 18% 28%, rgba(124, 92, 248, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse 48% 48% at 82% 72%, rgba(88, 101, 249, 0.07) 0%, transparent 52%),
        radial-gradient(ellipse 58% 52% at 48% 52%, rgba(110, 56, 240, 0.05) 0%, transparent 58%);
}

/* Stars Background */
.dk-stars {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65;
    background-image: 
        radial-gradient(2.2px 2.2px at 18px 32px, rgba(255,255,255,0.32), transparent),
        radial-gradient(2.2px 2.2px at 42px 68px, rgba(124,92,248,0.32), transparent),
        radial-gradient(1.2px 1.2px at 52px 48px, rgba(255,255,255,0.22), transparent),
        radial-gradient(1.2px 1.2px at 128px 82px, rgba(88,101,249,0.27), transparent),
        radial-gradient(2.2px 2.2px at 78px 12px, rgba(255,255,255,0.32), transparent);
    background-repeat: repeat;
    background-size: 210px 210px;
    animation: starsTwinkle 3.2s ease-in-out infinite;
    will-change: opacity;
}

/* Container */
.dk-container {
    max-width: var(--dk-container-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dk-text-primary);
    font-family: var(--dk-font-title);
    font-weight: 700;
    line-height: 1.15;
}

h1 { font-size: 3.1rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.95rem; }
h4 { font-size: 1.55rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.15rem; }

a {
    color: var(--dk-primary-light);
    text-decoration: none;
    transition: color var(--dk-speed-quick) var(--dk-ease);
}

a:hover {
    color: var(--dk-primary);
}

/* Header Navigation */
.dk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 8, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dk-border-dim);
}

.dk-nav {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dk-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dk-text-primary);
    font-family: var(--dk-font-title);
    font-size: 1.55rem;
    font-weight: 800;
    transition: transform var(--dk-speed-quick) var(--dk-ease);
}

.dk-logo:hover {
    color: var(--dk-text-primary);
    transform: scale(1.06);
}

.dk-logo-icon {
    width: 42px;
    height: 42px;
}

.dk-logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(124, 92, 248, 0.55));
}

.dk-accent {
    background: var(--dk-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dk-nav-menu {
    display: flex;
    list-style: none;
    gap: 44px;
}

.dk-nav-menu a {
    color: var(--dk-text-secondary);
    font-weight: 500;
    position: relative;
    transition: all var(--dk-speed-quick) var(--dk-ease);
}

.dk-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--dk-gradient-accent);
    transition: width var(--dk-speed-medium) var(--dk-ease);
}

.dk-nav-menu a:hover {
    color: var(--dk-text-primary);
}

.dk-nav-menu a:hover::after {
    width: 100%;
}

.dk-nav-actions {
    display: flex;
    gap: 18px;
}

.dk-burger {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dk-burger span {
    width: 30px;
    height: 3.5px;
    background: var(--dk-primary);
    border-radius: 4px;
    transition: all var(--dk-speed-quick) var(--dk-ease);
}

/* Buttons */
.dk-btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--dk-font-title);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--dk-radius-sm);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--dk-speed-medium) var(--dk-ease);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.dk-btn-primary {
    background: var(--dk-gradient-primary);
    color: var(--dk-text-primary);
    box-shadow: 0 5px 18px rgba(124, 92, 248, 0.32);
}

.dk-btn-primary:hover {
    color: var(--dk-text-primary);
    box-shadow: var(--dk-glow-primary);
    transform: translateY(-3px);
}

.dk-btn-outline {
    background: transparent;
    color: var(--dk-primary-light);
    border: 2.5px solid var(--dk-primary);
}

.dk-btn-outline:hover {
    background: var(--dk-primary);
    color: var(--dk-text-primary);
    transform: translateY(-3px);
}

.dk-btn-ghost {
    background: rgba(124, 92, 248, 0.12);
    color: var(--dk-primary-light);
    border: 1px solid var(--dk-border-dim);
}

.dk-btn-ghost:hover {
    background: rgba(124, 92, 248, 0.22);
    border-color: var(--dk-border-bright);
    color: var(--dk-primary-light);
}

.dk-btn-large {
    padding: 20px 44px;
    font-size: 1.15rem;
}

/* Hero Section */
.dk-hero {
    position: relative;
    padding: 190px 0 130px;
    overflow: hidden;
}

.dk-hero-backdrop {
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    height: 850px;
    pointer-events: none;
}

.dk-hero-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: var(--dk-gradient-radial);
    border-radius: 50%;
    animation: corePulse 3.3s ease-in-out infinite;
    will-change: transform, opacity;
}

.dk-hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2.5px solid rgba(124, 92, 248, 0.22);
    border-radius: 50%;
    animation: ringRotate 16s linear infinite;
    will-change: transform;
}

.dk-hero-ring:nth-child(2) { width: 420px; height: 420px; }
.dk-hero-ring:nth-child(3) { width: 580px; height: 580px; animation-duration: 22s; }
.dk-hero-ring:nth-child(4) { width: 730px; height: 730px; animation-duration: 27s; animation-direction: reverse; }

.dk-hero-content {
    position: relative;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.dk-hero-tag {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(124, 92, 248, 0.17);
    border: 1px solid var(--dk-border-bright);
    border-radius: 55px;
    color: var(--dk-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 28px;
    animation: tagFloat 2.7s ease-in-out infinite;
    will-change: transform;
}

.dk-hero h1 {
    font-size: 3.6rem;
    margin-bottom: 28px;
    line-height: 1.05;
}

.dk-hero h1 span {
    display: block;
    background: var(--dk-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    margin-top: 10px;
}

.dk-hero-description {
    font-size: 1.3rem;
    color: var(--dk-text-subtle);
    margin-bottom: 44px;
    line-height: 1.75;
}

.dk-hero-metrics {
    display: flex;
    justify-content: center;
    gap: 68px;
    margin: 55px 0;
}

.dk-hero-metric {
    text-align: center;
}

.dk-hero-metric-value {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--dk-font-title);
    background: var(--dk-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.dk-hero-metric-label {
    display: block;
    color: var(--dk-text-subtle);
    font-size: 0.9rem;
}

.dk-hero-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.dk-hero-compact {
    padding: 150px 0 90px;
}

/* Section Styling */
section {
    padding: var(--dk-section-spacing) 0;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dk-section-header {
    text-align: center;
    max-width: 730px;
    margin: 0 auto 65px;
}

.dk-section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(124, 92, 248, 0.12);
    border: 1px solid var(--dk-border-dim);
    border-radius: 55px;
    color: var(--dk-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.dk-section-header h2 {
    margin-bottom: 18px;
}

.dk-section-header p {
    font-size: 1.15rem;
    color: var(--dk-text-subtle);
}

/* About / Features Grid */
.dk-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 34px;
    margin-top: 65px;
}

.dk-about-item {
    background: var(--dk-gradient-surface);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-md);
    padding: 44px 34px;
    text-align: center;
    transition: all var(--dk-speed-medium) var(--dk-ease);
    will-change: transform;
}

.dk-about-item:hover {
    transform: translateY(-4px);
    border-color: var(--dk-border-bright);
    box-shadow: var(--dk-glow-primary);
}

.dk-about-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 28px;
    color: var(--dk-primary);
    filter: drop-shadow(var(--dk-glow-primary));
}

.dk-about-item h3 {
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.dk-about-item p {
    color: var(--dk-text-subtle);
    line-height: 1.65;
}

/* Games Grid */
.dk-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 34px;
    margin-top: 65px;
}

.dk-game-item {
    background: var(--dk-gradient-surface);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-md);
    overflow: hidden;
    transition: all var(--dk-speed-medium) var(--dk-ease);
    will-change: transform;
}

.dk-game-item:hover {
    transform: translateY(-6px);
    border-color: var(--dk-border-bright);
    box-shadow: var(--dk-glow-primary);
}

.dk-game-visual {
    position: relative;
    height: 210px;
    background: var(--dk-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dk-game-emoji {
    font-size: 5.2rem;
    filter: drop-shadow(0 5px 12px rgba(124, 92, 248, 0.35));
}

.dk-game-layer {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 18, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dk-speed-medium) var(--dk-ease);
    will-change: opacity;
}

.dk-game-item:hover .dk-game-layer {
    opacity: 1;
}

.dk-game-details {
    padding: 22px;
}

.dk-game-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.dk-game-provider {
    color: var(--dk-text-muted);
    font-size: 0.9rem;
}

.dk-games-cta {
    text-align: center;
    margin-top: 55px;
}

/* Bonuses Grid */
.dk-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 34px;
    margin-top: 65px;
}

.dk-bonus-item {
    background: var(--dk-gradient-surface);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-md);
    padding: 44px 34px;
    text-align: center;
    transition: all var(--dk-speed-medium) var(--dk-ease);
    will-change: transform;
}

.dk-bonus-item:hover {
    transform: translateY(-4px);
    border-color: var(--dk-border-bright);
}

.dk-bonus-item.dk-featured {
    background: linear-gradient(138deg, rgba(124, 92, 248, 0.12) 0%, rgba(88, 101, 249, 0.12) 100%);
    border: 2.5px solid var(--dk-primary);
    box-shadow: var(--dk-glow-primary);
}

.dk-bonus-emoji {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 24px;
    filter: drop-shadow(0 5px 12px rgba(124, 92, 248, 0.45));
}

.dk-bonus-item h3 {
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.dk-bonus-amount {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--dk-font-title);
    background: var(--dk-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 24px 0;
}

.dk-bonus-item p {
    color: var(--dk-text-subtle);
    margin-bottom: 28px;
    line-height: 1.65;
}

/* Stories / Reviews */
.dk-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 34px;
    margin-top: 65px;
}

.dk-story-item {
    background: var(--dk-gradient-surface);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-md);
    padding: 34px;
    transition: all var(--dk-speed-medium) var(--dk-ease);
    will-change: transform;
}

.dk-story-item:hover {
    border-color: var(--dk-border-bright);
    transform: translateY(-4px);
}

.dk-story-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.dk-story-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--dk-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dk-text-primary);
}

.dk-story-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dk-story-author {
    font-weight: 600;
    color: var(--dk-text-primary);
}

.dk-story-place {
    font-size: 0.9rem;
    color: var(--dk-text-muted);
}

.dk-story-prize {
    background: rgba(124, 92, 248, 0.12);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-sm);
    padding: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.dk-prize-label {
    display: block;
    font-size: 0.9rem;
    color: var(--dk-text-muted);
    margin-bottom: 10px;
}

.dk-prize-sum {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--dk-font-title);
    background: var(--dk-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dk-story-quote {
    color: var(--dk-text-subtle);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 18px;
}

.dk-story-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dk-text-muted);
}

/* Guide / Steps */
.dk-guide-list {
    max-width: 950px;
    margin: 65px auto 0;
}

.dk-guide-block {
    display: flex;
    gap: 34px;
    margin-bottom: 55px;
}

.dk-step-num {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    background: var(--dk-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 800;
    font-family: var(--dk-font-title);
    color: var(--dk-text-primary);
    box-shadow: var(--dk-glow-primary);
}

.dk-step-info h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.dk-step-info p {
    color: var(--dk-text-subtle);
    line-height: 1.75;
    margin-bottom: 18px;
}

.dk-step-hint {
    background: rgba(124, 92, 248, 0.12);
    border-left: 4px solid var(--dk-primary);
    padding: 18px 24px;
    border-radius: var(--dk-radius-xs);
    margin-top: 18px;
}

.dk-step-hint strong {
    color: var(--dk-primary-light);
}

/* Article / SEO Content */
.dk-article {
    background: var(--dk-bg-surface);
}

.dk-article-content {
    max-width: 950px;
    margin: 0 auto;
}

.dk-article-content h2 {
    font-size: 2.35rem;
    margin-bottom: 28px;
}

.dk-article-content h3 {
    font-size: 1.85rem;
    margin: 44px 0 24px;
}

.dk-article-content p {
    margin-bottom: 24px;
    line-height: 1.85;
    color: var(--dk-text-subtle);
}

.dk-article-content ul {
    margin: 24px 0;
    padding-left: 34px;
}

.dk-article-content li {
    margin-bottom: 14px;
    color: var(--dk-text-subtle);
    line-height: 1.75;
}

.dk-article-content strong {
    color: var(--dk-text-primary);
    font-weight: 600;
}

/* FAQ */
.dk-faq-list {
    max-width: 850px;
    margin: 65px auto 0;
}

.dk-faq-entry {
    background: var(--dk-gradient-surface);
    border: 1px solid var(--dk-border-dim);
    border-radius: var(--dk-radius-md);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all var(--dk-speed-quick) var(--dk-ease);
    will-change: border-color;
}

.dk-faq-entry:hover {
    border-color: var(--dk-border-bright);
}

.dk-faq-entry summary {
    padding: 28px 34px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dk-text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dk-faq-entry summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--dk-primary);
    transition: transform var(--dk-speed-quick) var(--dk-ease);
}

.dk-faq-entry[open] summary::after {
    transform: rotate(45deg);
}

.dk-faq-response {
    padding: 0 34px 28px;
}

.dk-faq-response p {
    color: var(--dk-text-subtle);
    line-height: 1.75;
}

/* CTA Section */
.dk-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.dk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dk-gradient-radial);
    opacity: 0.35;
}

.dk-cta-box {
    position: relative;
    background: var(--dk-gradient-surface);
    border: 2.5px solid var(--dk-border-bright);
    border-radius: var(--dk-radius-lg);
    padding: 65px 44px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: var(--dk-glow-primary);
}

.dk-cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 24px;
}

.dk-cta-box p {
    font-size: 1.3rem;
    color: var(--dk-text-subtle);
    margin-bottom: 36px;
}

/* Footer */
.dk-footer {
    background: var(--dk-bg-dark);
    border-top: 1px solid var(--dk-border-dim);
    padding: 65px 0 34px;
}

.dk-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 44px;
    margin-bottom: 44px;
}

.dk-footer-brand p {
    color: var(--dk-text-muted);
    margin-top: 18px;
    line-height: 1.65;
}

.dk-footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.dk-footer-links ul {
    list-style: none;
}

.dk-footer-links li {
    margin-bottom: 14px;
}

.dk-footer-links a {
    color: var(--dk-text-subtle);
    transition: color var(--dk-speed-quick) var(--dk-ease);
}

.dk-footer-links a:hover {
    color: var(--dk-primary-light);
}

.dk-footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.dk-footer-contact p {
    color: var(--dk-text-subtle);
    margin-bottom: 10px;
}

.dk-footer-bottom {
    text-align: center;
    padding-top: 34px;
    border-top: 1px solid var(--dk-border-dim);
}

.dk-footer-bottom p {
    color: var(--dk-text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.dk-disclaimer {
    font-size: 0.82rem !important;
}

/* Responsive Design */
@media (max-width: 790px) {
    html { font-size: 14px; }
    
    .dk-nav-menu {
        display: none;
    }
    
    .dk-burger {
        display: flex;
    }
    
    .dk-hero h1 {
        font-size: 2.6rem;
    }
    
    .dk-hero h1 span {
        font-size: 2.1rem;
    }
    
    .dk-hero-metrics {
        flex-direction: column;
        gap: 34px;
    }
    
    .dk-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dk-about-grid,
    .dk-games-grid,
    .dk-bonuses-grid,
    .dk-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .dk-guide-block {
        flex-direction: column;
        gap: 24px;
    }
    
    .dk-footer-grid {
        grid-template-columns: 1fr;
    }
}

