/* NV Casino Style - Matching Official Design */

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

:root {
    /* NV Casino Colors - Viola e Fucsia */
    --primary-pink: #f5006a;
    --primary-purple: #6B2D9E;
    --secondary-purple: #8B3FC7;
    --dark-bg: #050510;
    --darker-bg: #000000;
    --card-bg: #1A1A2E;
    --card-hover: #242438;
    --text-white: #FFFFFF;
    --text-gray: #A0A0B8;
    --text-muted: #6B6B80;
    --gradient-primary: linear-gradient(135deg, #f5006a 0%, #6B2D9E 100%);
    --gradient-secondary: linear-gradient(135deg, #8B3FC7 0%, #f5006a 100%);
    --gradient-hero: linear-gradient(180deg, #1A0F2E 0%, #0B0B1E 100%);
    --glow-pink: rgba(245, 0, 106, 0.4);
    --glow-purple: rgba(107, 45, 158, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 24px;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 140, 0.4));
}

.nav-logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-nv {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-login {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-register {
    padding: 10px 24px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-pink);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--glow-pink);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 380px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 45px 24px 30px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #0a0a0f 0%, 
        #12121a 50%, 
        #1a1a25 100%
    );
    opacity: 1 !important;
    visibility: visible !important;
}

/* BLOCCA QUALSIASI MODIFICA AGLI ELEMENTI HERO */
.hero,
.hero *,
.hero::before,
.hero::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
}


.hero-bg {
    display: none;
}

/* Gradient bottom fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-bottom-fade {
        height: 30px;
        z-index: 1;
    }
}


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.bonus-amount {
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--glow-pink);
}

.bonus-freispiele {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-white);
    margin-top: 6px;
}

.hero-cta-group {
    display: flex !important;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-hero {
    padding: 14px 36px;
    border: none;
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: none !important;
    transform: none !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-hero-primary {
    background: var(--gradient-primary) !important;
    box-shadow: 0 10px 40px var(--glow-pink) !important;
    animation: none !important;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: none !important;
}

.ios-icon {
    font-size: 20px;
}

.btn-hero-primary:hover {
    transform: none !important;
    box-shadow: 0 10px 40px var(--glow-pink) !important;
}

@keyframes btnPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 1; }
}

.hero-subtitle {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 13px;
}

/* Bonus Cards - Simple Style (No Boxes) */
.bonus-cards {
    padding: 0 24px 28px;
    background: transparent;
    margin-top: -20px;
}

.cards-grid-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-item-simple {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.bonus-item-simple:hover {
    transform: translateY(-3px);
}

.bonus-icon {
    font-size: 46px;
    filter: drop-shadow(0 4px 12px rgba(233, 30, 140, 0.4));
    flex-shrink: 0;
}

.bonus-text {
    text-align: left;
}

.bonus-text h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
}

.bonus-text p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Responsive per bonus cards - rimosso, gestito nel media query principale */

/* Search and Filters Bar */
.search-filters {
    padding: 16px 24px 0;
    background: var(--darker-bg);
}

.search-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    background: rgba(42, 38, 70, 0.95);
    padding: 0 20px;
    border-radius: 16px;
    border: 2px solid rgba(107, 45, 158, 0.4);
    height: 56px;
    box-shadow: 0 4px 20px rgba(107, 45, 158, 0.2);
}

.search-input {
    flex: 1;
    min-width: 250px;
    background: transparent;
    border: none;
    padding: 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    outline: none;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 16px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    flex-shrink: 0;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 140, 0.4);
}

/* Game Categories */
.game-categories {
    padding: 10px 24px 20px;
    background: var(--darker-bg);
}

.game-categories .container {
    position: relative;
}

.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Scroll Arrows */
.category-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(55, 50, 85, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.category-scroll-left {
    left: -12px;
}

.category-scroll-right {
    right: -12px;
}

.category-scroll-arrow:hover {
    background: rgba(60, 55, 95, 1);
    border-color: rgba(233, 30, 140, 0.5);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(233, 30, 140, 0.3);
}

.category-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.category-btn {
    background: rgba(42, 38, 70, 0.95);
    border: 2px solid rgba(107, 45, 158, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 200px;
    height: 72px;
    box-shadow: 0 2px 12px rgba(107, 45, 158, 0.15);
}

.category-btn:hover {
    background: rgba(50, 45, 80, 1);
    border-color: rgba(233, 30, 140, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(107, 45, 158, 0.3);
}

.category-btn.active {
    background: rgba(50, 45, 80, 1);
    border: 2px solid var(--primary-pink);
    box-shadow: 0 6px 24px rgba(233, 30, 140, 0.5);
}

.cat-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 140, 0.4));
    flex-shrink: 0;
}

.cat-icon-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 140, 0.4));
    transition: transform 0.3s ease;
}

.category-btn:hover .cat-icon-img {
    transform: scale(1.1);
}

.category-btn.active .cat-icon-img {
    filter: drop-shadow(0 4px 12px rgba(233, 30, 140, 0.6));
}

.cat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cat-text {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.cat-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    font-weight: 400;
}

/* Top Games Section */
.top-games {
    padding: 35px 24px 80px;
    background: var(--darker-bg);
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
    justify-content: center;
}

.flag-icon {
    font-size: 32px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(217, 26, 122, 0.2);
}

.game-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--card-bg);
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-emoji {
    font-size: 80px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.game-info {
    padding: 16px;
}

.game-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-play {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: linear-gradient(135deg, #E91A8A 0%, #8B2CCF 100%);
}

/* Winners Section */
.winners-section {
    padding: 80px 24px;
    background: var(--dark-bg);
}

/* iOS App Download Banner */
.ios-app-banner {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ios-app-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ios-app-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ios-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.ios-banner-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.ios-icon-large {
    font-size: 80px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.ios-text {
    flex: 1;
}

.ios-banner-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ios-banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.ios-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ios-features li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.ios-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-ios-download {
    background: #000000;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.btn-ios-download:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.apple-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
}

.btn-ios-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-ios-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.btn-ios-large {
    font-size: 20px;
    font-weight: 600;
}

.ios-banner-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.winners-section .section-title {
    text-align: left;
    justify-content: flex-start;
}

.winners-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.winners-scroll::-webkit-scrollbar {
    height: 6px;
}

.winners-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.winners-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 3px;
}

.winner-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.winner-card.highlight {
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, rgba(217, 26, 122, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
}

.winner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

.winner-game {
    display: flex;
    align-items: center;
    gap: 16px;
}

.winner-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.winner-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.winner-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.winner-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.winner-amount.big {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 24px;
    background: var(--dark-bg);
}

.payment-methods .section-title,
.game-providers .section-title,
.faq-section .section-title {
    text-align: center;
    justify-content: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 40px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: var(--card-hover);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.payment-logo {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.payment-logo svg {
    width: 48px;
    height: 32px;
}

.payment-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
}

/* Game Providers Section */
.game-providers {
    padding: 80px 24px;
    background: var(--darker-bg);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.provider-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: var(--card-hover);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(107, 45, 158, 0.3);
}

/* SEO Content Section */
.seo-content {
    padding: 60px 24px;
    background: var(--darker-bg);
}

.seo-text-block {
    max-width: 1000px;
    margin: 0 auto 32px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 12px;
    line-height: 1.8;
}

.seo-text-block h2 {
    color: var(--primary-pink);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-text-block h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 8px;
}

.seo-text-block p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.seo-text-block strong {
    color: #fff;
    font-weight: 600;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.seo-feature {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(249, 0, 106, 0.1);
    transition: all 0.3s ease;
}

.seo-feature:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 0, 106, 0.2);
}

.seo-feature h4 {
    color: var(--primary-pink);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.seo-feature p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.seo-feature strong {
    color: #fff;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    background: var(--dark-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--card-hover);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 80px 24px;
    background: var(--darker-bg);
}

.why-us .section-title {
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--card-hover);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--glow-pink));
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, rgba(217, 26, 122, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-cta-large {
    padding: 20px 60px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px var(--glow-pink);
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px var(--glow-pink);
}

.cta-terms {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 24px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 12px 0;
    }
    
    .nav-content {
        gap: 16px;
    }
    
    .nav-logo {
        gap: 8px;
        font-size: 20px;
    }
    
    .nav-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-actions {
        flex: 1;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .btn-login,
    .btn-register {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        padding: 40px 16px 10px;
    }
    
    .hero-title {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 12px;
    }
    
    .bonus-amount {
        font-size: clamp(40px, 10vw, 60px);
    }
    
    .bonus-freispiele {
        font-size: clamp(16px, 4vw, 24px);
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 0;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    /* Bonus Cards */
    .bonus-cards {
        padding: 0 16px 20px;
        margin-top: -60px;
        position: relative;
        z-index: 10;
    }
    
    .cards-grid-simple {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        width: 100%;
    }
    
    .bonus-item-simple {
        justify-content: flex-start;
        padding: 0;
        gap: 14px;
        width: 100%;
        max-width: 320px;
    }
    
    .bonus-icon {
        font-size: 38px;
        flex-shrink: 0;
    }
    
    .bonus-text h3 {
        font-size: 16px;
        text-align: left;
        white-space: normal;
    }
    
    .bonus-text p {
        font-size: 12px;
        text-align: left;
    }
    
    /* Search Bar */
    .search-filters {
        padding: 12px 16px 0;
    }
    
    .search-bar {
        flex-wrap: wrap;
        padding: 12px 16px;
        height: auto;
        gap: 8px;
    }
    
    .search-input {
        width: 100%;
        min-width: 100%;
        padding: 8px 0;
    }
    
    .filter-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        font-size: 12px;
        padding: 8px 12px;
    }
    
    /* Game Categories */
    .game-categories {
        padding: 8px 16px 16px;
    }
    
    .categories-scroll {
        gap: 8px;
        padding-bottom: 8px;
    }
    
    .category-btn {
        min-width: 160px;
        height: 64px;
        padding: 12px 16px;
        gap: 10px;
    }
    
    .cat-icon-img {
        width: 36px;
        height: 36px;
    }
    
    .cat-text {
        font-size: 13px;
    }
    
    .cat-count {
        font-size: 10px;
    }
    
    .category-scroll-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
    
    .category-scroll-left {
        left: -8px;
    }
    
    .category-scroll-right {
        right: -8px;
    }
    
    /* Games Grid */
    .top-games {
        padding: 30px 16px 60px;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: clamp(22px, 5vw, 28px);
        justify-content: flex-start;
    }
    
    .flag-icon {
        font-size: 24px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        border-radius: 12px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-title {
        font-size: 14px;
    }
    
    .game-provider {
        font-size: 11px;
    }
    
    .btn-play {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Winners Section */
    .winners-section {
        padding: 50px 16px;
    }
    
    /* iOS App Banner Mobile */
    .ios-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 16px;
        gap: 30px;
    }
    
    .ios-banner-left {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ios-icon-large {
        font-size: 60px;
    }
    
    .ios-banner-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .ios-banner-subtitle {
        font-size: 14px;
    }
    
    .ios-features {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .ios-features li {
        font-size: 13px;
    }
    
    .btn-ios-download {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .winners-scroll {
        gap: 12px;
    }
    
    .winner-card {
        min-width: 280px;
        padding: 16px;
    }
    
    .winner-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .winner-info h4 {
        font-size: 14px;
    }
    
    .winner-amount {
        font-size: 20px;
    }
    
    .winner-amount.big {
        font-size: 26px;
    }
    
    /* Payment Methods */
    .payment-methods,
    .game-providers,
    .faq-section,
    .why-us {
        padding: 50px 16px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .payment-item:nth-child(10) {
        grid-column: 2 / 3;
    }
    
    .payment-item {
        padding: 16px 12px;
    }
    
    .payment-logo {
        width: 40px;
        height: 26px;
    }
    
    .payment-logo svg {
        width: 40px;
        height: 26px;
    }
    
    .payment-item span {
        font-size: 12px;
    }
    
    /* Providers */
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .provider-item {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 24px;
    }
    
    .feature-icon {
        font-size: 48px;
    }
    
    .feature-item h3 {
        font-size: 20px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 60px 16px;
    }
    
    .cta-content h2 {
        font-size: clamp(26px, 6vw, 36px);
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-cta-large {
        padding: 16px 40px;
        font-size: 18px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 16px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero {
        min-height: 450px;
        padding: 30px 12px 10px;
    }
    
    .bonus-amount {
        font-size: clamp(36px, 12vw, 50px);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-item:nth-child(10) {
        grid-column: auto;
    }
    
    .category-btn {
        min-width: 140px;
    }
    
    /* SEO Content Mobile */
    .seo-content {
        padding: 40px 16px;
    }
    
    .seo-text-block {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .seo-text-block h2 {
        font-size: 20px;
    }
    
    .seo-text-block h3 {
        font-size: 17px;
    }
    
    .seo-text-block p {
        font-size: 14px;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .seo-feature {
        padding: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORZA VISIBILITÀ PERMANENTE - TUTTI GLI ELEMENTI */
.hero,
.hero *,
.hero-content,
.hero-content *,
.hero-title,
.hero-bonus,
.hero-bonus *,
.bonus-amount,
.bonus-freispiele,
.btn-hero,
.btn-hero-primary,
.btn-hero-secondary,
.hero-cta-group,
.hero-cta-group *,
.hero-subtitle,
.bonus-item-simple,
.game-card,
.winner-card,
.payment-item,
.provider-item,
.faq-item,
.feature-item,
.bonus-cards,
.search-filters,
.game-categories,
.top-games,
.winners-section,
.payment-methods,
.game-providers,
.faq-section,
.why-us,
.final-cta {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* ===== SECONDARY PAGES STYLES ===== */

/* Breadcrumbs */
.breadcrumbs {
    padding: 16px 24px;
    background: var(--darker-bg);
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #fff;
}

/* Hero Secondary */
.hero-secondary {
    min-height: 400px;
    padding: 80px 24px 60px;
}

.hero-subtitle-large {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Bonus Codes Section */
.bonus-codes-section {
    padding: 80px 24px;
    background: var(--dark-bg);
}

.bonus-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-code-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 2px solid rgba(249, 0, 106, 0.1);
    transition: all 0.3s ease;
}

.bonus-code-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 0, 106, 0.3);
}

.bonus-code-card.featured {
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, rgba(249, 0, 106, 0.1) 0%, var(--card-bg) 100%);
}

.bonus-code-card.special {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--card-bg) 100%);
}

.bonus-code-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-pink);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bonus-code-card.special .bonus-code-badge {
    background: #FFD700;
    color: #000;
}

.bonus-code-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bonus-code-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bonus-code-value {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(249, 0, 106, 0.1);
    border-radius: 12px;
    border: 1px dashed var(--primary-pink);
}

.bonus-code-value .code {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-pink);
    flex: 1;
}

.btn-copy {
    background: var(--primary-pink);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #d6005a;
    transform: scale(1.05);
}

.bonus-code-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-code-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bonus-code-features li {
    color: var(--text-gray);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-code-features li:last-child {
    border-bottom: none;
}

.btn-claim {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 0, 106, 0.4);
}

/* How To Section */
.how-to-section {
    padding: 80px 24px;
    background: var(--darker-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(249, 0, 106, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 100%);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.step-card a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

/* Bonus Types Section */
.bonus-types-section {
    padding: 80px 24px;
    background: var(--dark-bg);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-type-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(249, 0, 106, 0.1);
    transition: all 0.3s;
}

.bonus-type-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
}

.bonus-type-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bonus-type-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-type-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-secondary {
        min-height: 350px;
        padding: 60px 16px 40px;
    }
    
    .hero-subtitle-large {
        font-size: 16px;
    }
    
    .bonus-codes-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-types-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-code-card {
        padding: 24px;
    }
    
    .bonus-code-value {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-copy {
        width: 100%;
    }
}

/* ===== CONTENT PAGES STYLES ===== */
.content-section {
    padding: 60px 24px;
    background: var(--dark-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
}

.content-main h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-main h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.content-main h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.content-main p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-main ul, .content-main ol {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 16px 0;
    padding-left: 24px;
}

.content-main li {
    margin-bottom: 8px;
}

.content-main a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

.content-main a:hover {
    text-decoration: underline;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid rgba(249, 0, 106, 0.1);
    text-align: center;
}

.sidebar-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.btn-sidebar {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(249, 0, 106, 0.3);
}

/* Mobile Responsive for Content Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-main {
        padding: 24px;
    }
    
    .content-main h2 {
        font-size: 24px;
    }
    
    .content-main h3 {
        font-size: 20px;
    }
}

/* Footer Affiliate Disclaimer */
.footer-affiliate-disclaimer {
    font-size: 11px;
    color: #666;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Internal Linking Optimization */
.seo-text-block a,
.seo-feature a {
    color: #f5006a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.seo-text-block a:hover,
.seo-feature a:hover {
    color: #ff1a7a;
    border-bottom: 1px solid #f5006a;
}

.seo-text-block a strong,
.seo-feature a strong {
    color: inherit;
}

.faq-answer a {
    color: #f5006a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #f5006a;
}

.faq-answer a:hover {
    color: #ff1a7a;
    border-bottom: 1px solid #f5006a;
}
