/**
 * Nuts Theme - tulevatnettikasinot.net
 * Dark Casino Theme: Magenta + Green + Amber on deep dark background
 * Based on Nuts by ThemeRex
 */

/* ==========================================================================
   GLOBAL OVERRIDES
   ========================================================================== */

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-white);
}

.section-title-lg {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-tight);
}

.section-subtitle {
    color: var(--color-text-light);
}

/* ==========================================================================
   HEADER OVERRIDE — Dark transparent
   ========================================================================== */

.header {
    background: var(--color-bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(248, 47, 119, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(248, 47, 119, 0.1);
}

.nav-dropdown {
    background: var(--color-bg-light);
    border: 1px solid rgba(248, 47, 119, 0.15);
}

.nav-dropdown-link {
    color: var(--color-text);
}

.nav-dropdown-link:hover {
    background: rgba(248, 47, 119, 0.1);
    color: var(--color-primary);
}

.nav-dropdown-link.active {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   HERO SLIDER — Full-width dark with decorative images
   ========================================================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 3, 11, 0.92) 0%, rgba(76, 15, 54, 0.7) 50%, rgba(15, 3, 11, 0.85) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: var(--header-height);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: var(--gradient-primary);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(248, 47, 119, 0.4);
    animation: fadeInDown 0.6s ease;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-slide-title span {
    color: var(--color-primary);
    text-shadow: 0 0 40px rgba(248, 47, 119, 0.5);
}

.hero-slide-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    line-height: var(--leading-relaxed);
    max-width: 520px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-slide-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-slider .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    font-weight: var(--font-bold);
    border-radius: var(--radius-full);
    box-shadow: 0 6px 25px rgba(248, 47, 119, 0.5);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--text-sm);
}

.hero-slider .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(248, 47, 119, 0.6);
}

.hero-slider .btn-secondary {
    background: transparent;
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--text-sm);
}

.hero-slider .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 5;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(248, 47, 119, 0.5);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    z-index: 5;
    pointer-events: none;
}

.hero-nav-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 47, 119, 0.2);
    border: 2px solid rgba(248, 47, 119, 0.4);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-base);
    pointer-events: all;
    backdrop-filter: blur(8px);
}

.hero-nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(248, 47, 119, 0.5);
}

.hero-nav-btn svg {
    width: 22px;
    height: 22px;
}

/* Decorative images on hero */
.hero-deco-left {
    position: absolute;
    left: -5%;
    top: 10%;
    width: 35%;
    max-width: 450px;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-deco-right {
    position: absolute;
    right: -5%;
    bottom: 5%;
    width: 35%;
    max-width: 450px;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
    animation: floatSlow 8s ease-in-out infinite reverse;
}

/* ==========================================================================
   ABOUT SECTION — Dark style
   ========================================================================== */

.about-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(248, 47, 119, 0.15);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border-radius: var(--radius-lg);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(248, 47, 119, 0.3));
}

.about-content p {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-medium);
    color: var(--color-text-white);
}

.about-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   PROCESS SECTION — Gradient bg with numbered cards
   ========================================================================== */

.process-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(248, 47, 119, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(76, 15, 54, 0.2);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(248, 47, 119, 0.1);
    transition: all var(--transition-base);
}

.process-step:hover {
    background: rgba(76, 15, 54, 0.35);
    border-color: rgba(248, 47, 119, 0.3);
    transform: translateY(-4px);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
    box-shadow: 0 6px 25px rgba(248, 47, 119, 0.4);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-md);
}

.process-step p {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ==========================================================================
   CTA BANNER — Dark with glow
   ========================================================================== */

.cta-banner {
    position: relative;
    padding: var(--space-4xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.15) saturate(0.5);
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 3, 11, 0.8) 0%, rgba(76, 15, 54, 0.5) 50%, rgba(15, 3, 11, 0.8) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   CAROUSEL — Dark pills
   ========================================================================== */

.carousel-section {
    background: linear-gradient(180deg, #2a1025 0%, #341230 50%, #2a1025 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(248, 47, 119, 0.1);
    border-bottom: 1px solid rgba(248, 47, 119, 0.1);
}

.carousel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(248, 47, 119, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.kw-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-full);
}

.kw-pill:hover {
    border-color: var(--color-primary);
    background: rgba(248, 47, 119, 0.2);
    color: #fff;
}

/* ==========================================================================
   CATEGORIES — Dark cards with glow
   ========================================================================== */

.category-card {
    background: rgba(76, 15, 54, 0.2);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(248, 47, 119, 0.1);
    box-shadow: none;
    transition: all var(--transition-base);
}

.category-card:hover {
    border-color: var(--color-primary);
    background: rgba(76, 15, 54, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(248, 47, 119, 0.2);
}

.category-card-icon {
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(248, 47, 119, 0.4);
}

.category-card-title {
    color: var(--color-text-white);
}

.category-card-count {
    color: var(--color-text-muted);
}

/* ==========================================================================
   TESTIMONIALS — Dark glass cards
   ========================================================================== */

.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(28, 195, 67, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(76, 15, 54, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(248, 47, 119, 0.1);
    box-shadow: none;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(248, 47, 119, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(248, 47, 119, 0.15);
}

.testimonial-text::before {
    color: var(--color-primary);
    opacity: 0.5;
}

.testimonial-text p {
    color: var(--color-text-light);
}

.testimonial-author {
    border-top: 1px solid rgba(248, 47, 119, 0.15);
}

.testimonial-author strong {
    color: var(--color-text-white);
}

.testimonial-author span {
    color: var(--color-text-muted);
}

/* ==========================================================================
   STATS + TRUST — Gradient bg with glowing numbers
   ========================================================================== */

.stats-trust-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section-alt);
    position: relative;
}

.stats-trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(248, 47, 119, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stats-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.stats-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-box {
    background: rgba(76, 15, 54, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(248, 47, 119, 0.1);
    transition: all var(--transition-base);
    box-shadow: none;
}

.stat-box:hover {
    border-color: var(--color-primary);
    background: rgba(76, 15, 54, 0.4);
    box-shadow: 0 0 30px rgba(248, 47, 119, 0.15);
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(248, 47, 119, 0.3);
}

.stat-box .stat-label {
    color: var(--color-text-muted);
}

.stats-trust-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.stats-trust-images img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 5px 15px rgba(248, 47, 119, 0.2));
}

.stats-trust-images img:hover {
    transform: scale(1.08);
}

/* ==========================================================================
   GAMES SECTION — Dark cards with hover reveal
   ========================================================================== */

.games-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.game-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(248, 47, 119, 0.05);
    border: 1px solid rgba(248, 47, 119, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(248, 47, 119, 0.25);
}

.game-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.game-card:hover .game-card-img {
    transform: scale(1.08);
}

.game-card-body {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-card-body h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: #fff;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.game-card-bonus {
    font-size: var(--text-sm);
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.game-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.game-card-rating {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-amber);
}

/* ==========================================================================
   FAQ SECTION — Dark accordion
   ========================================================================== */

.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.faq-image img {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(248, 47, 119, 0.15);
}

.faq-item {
    background: rgba(76, 15, 54, 0.2);
    border: 1px solid rgba(248, 47, 119, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.open {
    border-color: var(--color-primary);
    background: rgba(76, 15, 54, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-text-white);
    cursor: pointer;
    text-align: left;
    gap: var(--space-md);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-primary);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ==========================================================================
   TAGS SECTION — Dark tags
   ========================================================================== */

.tags-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #2a1025 0%, #341230 50%, #2a1025 100%);
    position: relative;
}

.tags-section::before,
.tags-section::after {
    background: none;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tag-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: var(--space-sm) var(--space-lg);
    transition: all var(--transition-base);
}

.tag-card::before {
    display: none;
}

.tag-card:hover {
    background: rgba(248, 47, 119, 0.2);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(248, 47, 119, 0.2);
    transform: translateY(-3px);
}

.tag-card-icon {
    background: rgba(248, 47, 119, 0.15);
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.tag-card-icon svg {
    width: 14px;
    height: 14px;
}

.tag-card-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
}

.tag-card:hover .tag-card-name {
    color: #fff;
}

.tag-card-count {
    background: rgba(248, 47, 119, 0.15);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: var(--text-xs);
    min-width: 26px;
    height: 26px;
}

.tag-card-featured {
    background: linear-gradient(135deg, rgba(248, 47, 119, 0.15) 0%, rgba(248, 47, 119, 0.08) 100%);
    border-color: rgba(248, 47, 119, 0.3);
}

.tag-card-featured .tag-card-icon {
    background: var(--color-primary);
    color: #fff;
}

.tag-card-featured .tag-card-name {
    color: #fff;
    font-weight: var(--font-semibold);
}

.tag-card-featured .tag-card-count {
    background: var(--color-primary);
    color: #fff;
}

.tag-card-featured:hover {
    background: linear-gradient(135deg, rgba(248, 47, 119, 0.25) 0%, rgba(248, 47, 119, 0.15) 100%);
    box-shadow: 0 6px 25px rgba(248, 47, 119, 0.3);
}

/* ==========================================================================
   BLOG SECTION — Dark post cards
   ========================================================================== */

.blog-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.blog-card {
    background: rgba(76, 15, 54, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(248, 47, 119, 0.1);
    box-shadow: none;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(248, 47, 119, 0.2);
}

.blog-card-img {
    height: 120px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: var(--space-sm) var(--space-md);
}

.blog-card-cat {
    color: var(--color-primary);
    font-size: var(--text-xs);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-text-white);
    line-height: var(--leading-tight);
}

/* ==========================================================================
   BUTTONS — Gradient with glow
   ========================================================================== */

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(248, 47, 119, 0.4);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 47, 119, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-white);
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    background: rgba(248, 47, 119, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(28, 195, 67, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(28, 195, 67, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   CARDS — Dark glass morphism
   ========================================================================== */

.card {
    background: rgba(76, 15, 54, 0.2);
    border: 1px solid rgba(248, 47, 119, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.card:hover {
    border-color: rgba(248, 47, 119, 0.3);
    box-shadow: 0 10px 30px rgba(248, 47, 119, 0.15);
}

.card-title {
    color: var(--color-text-white);
}

.card-text {
    color: var(--color-text-light);
}

.card-meta {
    border-top: 1px solid rgba(248, 47, 119, 0.1);
    color: var(--color-text-muted);
}

/* ==========================================================================
   CASINO CARDS — Dark neon style
   ========================================================================== */

.casino-card {
    background: rgba(76, 15, 54, 0.2);
    border: 1px solid rgba(248, 47, 119, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.casino-card::before {
    background: var(--gradient-primary);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(248, 47, 119, 0.2);
    border-color: rgba(248, 47, 119, 0.3);
}

.casino-card-name {
    color: var(--color-text-white);
}

.casino-card-bonus {
    background: rgba(248, 47, 119, 0.1);
    border-color: rgba(248, 47, 119, 0.3);
    color: var(--color-text);
}

.casino-card .btn {
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(248, 47, 119, 0.3);
}

.casino-card .btn:hover {
    box-shadow: 0 6px 20px rgba(248, 47, 119, 0.4);
}

/* New casino cards */
/* Casino cards — dark theme overrides (editorial style) */
.casino-card-new {
    background: #1e1230;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.casino-card-new:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.casino-card-badge {
    color: var(--color-green);
    background: rgba(28, 195, 67, 0.1);
    border-color: rgba(28, 195, 67, 0.25);
}

.casino-card-new-name {
    color: #fff;
}

.casino-card-bonus-label {
    color: rgba(255, 255, 255, 0.45);
}

.casino-card-bonus-value {
    color: var(--color-primary-light, #F82F77);
}

.casino-card-new-features span {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.casino-card-stars svg {
    fill: #FFB800;
}

.casino-card-rating-chip {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.casino-card-new-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.casino-card-new-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   SEO CONTENT
   ========================================================================== */

.seo-content {
    background: rgba(76, 15, 54, 0.15);
    border: 1px solid rgba(248, 47, 119, 0.08);
    border-radius: var(--radius-xl);
}

.seo-content h2 {
    color: var(--color-text-white);
}

.seo-content p {
    color: var(--color-text-light);
}

/* ==========================================================================
   FOOTER — Deep dark
   ========================================================================== */

.footer {
    background: var(--color-bg-footer);
    border-top: 1px solid rgba(248, 47, 119, 0.1);
}

.footer-title {
    color: var(--color-primary);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top-color: rgba(248, 47, 119, 0.1);
}

/* ==========================================================================
   MODAL — Dark glass
   ========================================================================== */

.modal {
    background: var(--color-bg-card-solid);
    border: 1px solid rgba(248, 47, 119, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(248, 47, 119, 0.1);
}

.modal-title {
    color: var(--color-text-white);
}

.modal-close:hover {
    background: rgba(248, 47, 119, 0.15);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.breadcrumb-item {
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-text-light);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item:last-child {
    color: var(--color-text-white);
}

/* ==========================================================================
   PAGINATION — Dark
   ========================================================================== */

.pagination-list li a,
.pagination-list li span {
    background: rgba(76, 15, 54, 0.2);
    border: 1px solid rgba(248, 47, 119, 0.15);
    color: var(--color-text);
}

.pagination-list li a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(248, 47, 119, 0.1);
}

.pagination-current {
    background: var(--gradient-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(248, 47, 119, 0.3);
}

/* ==========================================================================
   SIDEBAR — Dark widgets
   ========================================================================== */

.sidebar-widget {
    background: rgba(76, 15, 54, 0.2);
    border: 1px solid rgba(248, 47, 119, 0.1);
    box-shadow: none;
}

.sidebar-title {
    color: var(--color-text-white);
    border-bottom: 2px solid var(--color-primary);
}

/* ==========================================================================
   FORMS — Dark inputs
   ========================================================================== */

.form-input,
.form-textarea,
.form-select {
    background: rgba(76, 15, 54, 0.2);
    border: 2px solid rgba(248, 47, 119, 0.15);
    color: var(--color-text-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(248, 47, 119, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT PAGE — Minimalist editorial
   ========================================================================== */

.contact-page {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

/* Hero */
.contact-hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.contact-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info cards row */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: var(--space-2xl);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: border-color 200ms ease;
}

.contact-info-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(248, 47, 119, 0.1);
    color: var(--color-primary);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
}

.contact-info-value {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Form card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 40px;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    outline: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(248, 47, 119, 0.1);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    padding: 14px 36px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}

.contact-submit-btn:hover {
    background: #e0225f;
    transform: translateY(-1px);
}

.contact-submit-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-row {
        grid-template-columns: 1fr;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 24px;
        border-radius: 18px;
    }
    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ARTICLE CONTENT — Dark readable
   ========================================================================== */

article header h1 {
    color: var(--color-text-white);
}

.article-content h2 {
    color: var(--color-text-white);
}

.article-content h3 {
    color: var(--color-text-white);
}

.article-content h4 {
    color: var(--color-text-white);
}

.article-content,
.article-content p,
.article-content li,
.article-content dd,
.article-content dt,
.article-content figcaption {
    color: var(--color-text);
}

.article-content strong,
.article-content b {
    color: var(--color-text-white);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--color-text-white);
}

.article-content a {
    color: var(--color-primary);
}

.article-content a:hover {
    color: var(--color-primary-light);
}

.article-content ul li::marker,
.article-content ol li::marker {
    color: var(--color-primary);
}

.article-content th {
    background: var(--color-secondary);
    color: #fff;
}

.article-content td {
    color: var(--color-text);
    border-bottom-color: rgba(248, 47, 119, 0.1);
}

.article-content tr:nth-child(even) {
    background: rgba(76, 15, 54, 0.1);
}

.article-content blockquote {
    background: rgba(76, 15, 54, 0.2);
    border-left-color: var(--color-primary);
    color: var(--color-text-light);
}

.article-content code {
    color: var(--color-primary-light);
    background: rgba(76, 15, 54, 0.3);
}

.article-content pre {
    background: rgba(76, 15, 54, 0.25);
    color: var(--color-text);
    border: 1px solid rgba(248, 47, 119, 0.1);
}

.article-content table {
    border-color: rgba(248, 47, 119, 0.15);
}

.article-content .article,
.article-content .prose {
    background: transparent;
}

/* Article tags */
.article-tags-section {
    background: rgba(76, 15, 54, 0.15);
    border: 1px solid rgba(248, 47, 119, 0.1);
}

.article-tags-section::before {
    background: var(--gradient-primary);
}

.article-tags-icon {
    background: var(--gradient-primary);
}

.article-tags-title {
    color: var(--color-text-white);
}

.article-tag {
    background: rgba(76, 15, 54, 0.2);
    border-color: rgba(248, 47, 119, 0.15);
    color: var(--color-text);
}

.article-tag::before {
    color: var(--color-primary);
}

.article-tag:hover {
    background: var(--gradient-primary);
    color: #fff;
}

/* ==========================================================================
   MOBILE NAV — Dark
   ========================================================================== */

.mobile-nav {
    background: var(--color-bg-dark);
}

.mobile-nav-link {
    color: var(--color-text-white);
}

.mobile-nav-item {
    border-bottom-color: rgba(248, 47, 119, 0.1);
}

.mobile-nav-dropdown a {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-dropdown a:hover {
    color: var(--color-primary);
}

.mobile-nav-link.active {
    color: var(--color-primary);
}

/* ==========================================================================
   STATS SECTION (old override)
   ========================================================================== */

.stats-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
}

.stat-number {
    color: var(--color-primary);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-code {
    color: var(--color-primary);
    text-shadow: 0 0 40px rgba(248, 47, 119, 0.3);
}

.error-title {
    color: var(--color-text-white);
}

.error-text {
    color: var(--color-text-light);
}

/* ==========================================================================
   NOTIFICATIONS
   ========================================================================== */

.notification-content strong {
    color: var(--color-text-white);
}

.notification-content p {
    color: var(--color-text-light);
}

/* ==========================================================================
   INNER PAGES — Top padding for non-homepage
   ========================================================================== */

.main-content > .container:first-child {
    padding-top: var(--space-xl);
}

.main-content > .section:first-child {
    padding-top: var(--space-2xl);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ==========================================================================
   PORTFOLIO SECTION — Casino showcase grid
   ========================================================================== */

.portfolio-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(255, 171, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(248, 47, 119, 0.05);
    border: 1px solid rgba(248, 47, 119, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(248, 47, 119, 0.25);
}

.portfolio-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.08);
}

.portfolio-card-body {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: #fff;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.portfolio-card-bonus {
    font-size: var(--text-sm);
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card-rating {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-amber);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-sm);
}

/* ==========================================================================
   PAGE DECORATIONS — Subtle dark glow
   ========================================================================== */

.page-decor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 40% at 10% 30%, rgba(248, 47, 119, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 40% 35% at 90% 60%, rgba(28, 195, 67, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 45% 30% at 50% 80%, rgba(255, 171, 0, 0.02) 0%, transparent 60%);
}

/* Hide old card suit decorations — we use gradient glows now */
.page-decor .hero-decor-spade,
.page-decor .hero-decor-heart,
.page-decor .hero-decor-club,
.page-decor .hero-decor-dice,
.page-decor .hero-decor-chips,
.page-decor .hero-decor-cards,
.page-decor .hero-decor-extra,
.page-decor .hero-decor-roulette,
.page-decor .hero-decor-roulette2,
.page-decor .hero-decor-accent,
.page-decor .hero-decor-left,
.page-decor .hero-decor-right {
    display: none;
}

/* ==========================================================================
   RELATED ARTICLES — Dark cards
   ========================================================================== */

.related-articles {
    border-top-color: rgba(248, 47, 119, 0.1);
}

.related-title {
    color: var(--color-text-white);
}

/* ==========================================================================
   HIDE OLD HERO (use hero-slider instead)
   ========================================================================== */

.hero { display: none; }

/* ==========================================================================
   RESPONSIVE — Nuts Theme
   ========================================================================== */

@media (max-width: 1024px) {
    .about-grid,
    .faq-grid,
    .stats-trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-images { max-width: 500px; margin: 0 auto; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-slider { height: 75vh; }
    .hero-slider-nav { display: none; }
    .hero-deco-left, .hero-deco-right { display: none; }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }

    .tags-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-slider { height: 85vh; min-height: 500px; }
    .hero-slide-title { font-size: var(--text-3xl); }
    .hero-slide-text { font-size: var(--text-base); }
    .hero-slide-buttons { flex-direction: column; gap: var(--space-sm); }
    .hero-slide-buttons .btn { text-align: center; }
    .process-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .game-card-img { height: 180px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-numbers { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .stats-trust-images { grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
    .stats-trust-images img { max-width: 80px; }
    .about-features { grid-template-columns: 1fr; }
    .faq-image { display: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-banner-title { font-size: var(--text-2xl); }

    .tags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    .tag-card { padding: var(--space-sm) var(--space-md); }
    .tag-card-icon { width: 28px; height: 28px; }
    .tag-card-icon svg { width: 14px; height: 14px; }
    .tags-section { padding: var(--space-2xl) 0; }
}

@media (max-width: 640px) {
    .hero-slider { height: 95vh; }
    .hero-slide-title { font-size: var(--text-2xl); }
    .hero-badge { font-size: var(--text-xs); }
    .section-title-lg { font-size: var(--text-2xl); }
    .about-img-accent { display: none; }

    .tags-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    .tag-card { padding: var(--space-sm) var(--space-md); }
    .tag-card-name { font-size: var(--text-xs); }
    .tags-section { padding: var(--space-xl) 0; }
}
