/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e11d48;
    --primary-dark: #be185d;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-dark: #111827;
    --background: #ffffff;
    --background-light: #fef3c7;
    --background-dark: #7c2d12;
    --border-color: #fed7aa;
    --shadow: 0 4px 6px -1px rgba(239, 29, 72, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(239, 29, 72, 0.15);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.age-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.age-verification-logo {
    margin-bottom: 30px;
}

.age-verification-logo i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.age-verification-logo h2 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
}

.age-modal h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-icon {
    margin: 20px 0;
}

.age-icon img {
    width: 80px;
    height: auto;
}

.age-modal p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
}

.age-modal ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.age-modal li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.age-modal li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-confirm-btn, .age-exit-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-confirm-btn {
    background: var(--accent-color);
    color: white;
}

.age-confirm-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

.age-exit-btn {
    background: #ef4444;
    color: white;
}

.age-exit-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.8;
}

.logo i {
    color: var(--secondary-color);
    font-size: 28px;
}

.header-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.badge i {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 25%, #e11d48 50%, #be185d 75%, #a21caf 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23fbbf24" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #ea580c, #dc2626);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-badge i {
    font-size: 16px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 22px;
    color: #e0e7ff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: #c7d2fe;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #f59e0b, #ea580c, #dc2626);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1s; }
.floating-icon:nth-child(3) { animation-delay: 2s; }
.floating-icon:nth-child(4) { animation-delay: 3s; }
.floating-icon:nth-child(5) { animation-delay: 4s; }

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

.disclaimer-notice {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer-notice i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.disclaimer-notice p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

/* Casino Offers */
.casino-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 30%, #fed7aa 70%, #fecaca 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
    transform: translateY(-2px);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.casino-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.casino-card-link:hover {
    text-decoration: none;
}

.casino-card-link:hover .casino-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.casino-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #dc2626, #e11d48, #f59e0b, #ea580c, #be185d, #a21caf);
    border-radius: 20px 20px 0 0;
}

/* Hover effects moved to .casino-card-link */

.casino-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.casino-card.best-pick {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    position: relative;
}

.casino-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.casino-badges > div {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-featured {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-trusted {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.badge-payout {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.badge-slots {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.casino-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0 25px 0;
    position: relative;
}

.casino-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.casino-logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.casino-rating .stars {
    display: flex;
    gap: 2px;
}

.casino-rating .stars i {
    color: var(--secondary-color);
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(245, 158, 11, 0.5);
}

.rating-score {
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.bonus-highlight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-offer h4 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.bonus-value {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.bonus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 12px;
    background: rgba(225, 29, 72, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature:hover {
    background: rgba(225, 29, 72, 0.1);
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-color);
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
}

.casino-actions {
    margin: 25px 0;
}

.visit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #dc2626, #e11d48, #be185d);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    text-decoration: none;
    text-align: center;
    pointer-events: none;
}

.visit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.visit-btn:hover::before {
    left: 100%;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #be185d, #e11d48, #dc2626);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.7);
}

.visit-btn.pulse {
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(225, 29, 72, 0.8), 0 0 0 10px rgba(225, 29, 72, 0.1); }
}

.visit-btn span {
    font-size: 18px;
    line-height: 1;
}

.visit-btn small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: lowercase;
}

.players-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.players-count.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    animation: pulse 2s ease-in-out infinite;
}

.players-count i {
    font-size: 14px;
}

.bonus-terms {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.bonus-terms p {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Gaming Excellence */
.gaming-excellence {
    background: var(--background-light);
    padding: 80px 0;
}

.gaming-excellence h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.excellence-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.advantage-item, .consideration-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.advantage-item i, .consideration-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.consideration-item i {
    color: var(--secondary-color);
}

.advantage-item p, .consideration-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Selection Guide */
.selection-guide {
    padding: 80px 0;
    background: var(--background);
}

.selection-guide h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.guide-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.guide-feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.guide-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.guide-feature h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.guide-feature p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    padding: 60px 0;
    text-align: center;
}

.responsible-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.crown-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.crown-icon i {
    font-size: 32px;
}

.responsible-message h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.responsible-message p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 25px;
}

.tools-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.tools-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Expert Analysis */
.expert-analysis {
    padding: 80px 0;
    background: var(--background-light);
}

.expert-analysis h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.expert-analysis p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: justify;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.newsletter > div > p {
    font-size: 18px;
    color: #e0e7ff;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.join-btn {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.join-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 14px;
    color: #c7d2fe;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 15px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsible-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.responsible-logos a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.responsible-logos a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.responsible-logos img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-links h4 {
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.age-restriction {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.age-badge {
    text-align: center;
}

.age-badge img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.age-badge p {
    font-size: 12px;
    color: #d1d5db;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #e0e7ff;
    margin: 0;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: var(--background);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.content-main h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.feature-list, .review-process {
    margin: 30px 0;
}

.feature-list li, .review-process li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.disclaimer-box {
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.disclaimer-box h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

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

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.help-links, .quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-links a, .quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--background-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.help-links a:hover, .quick-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.help-links i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.help-links a:hover i, .quick-links a:hover i {
    color: white;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-method small {
    color: var(--text-light);
    font-size: 14px;
}

.additional-info {
    margin-top: 40px;
}

.additional-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .content-main h2 {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        min-width: auto;
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1;
        min-width: 120px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .casino-card {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .casino-badges {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin: 20px 0 25px 0;
    }
    
    .casino-logo {
        width: 80px;
        height: 80px;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature {
        padding: 10px;
        font-size: 13px;
    }
    
    .visit-btn {
        padding: 18px 16px;
        font-size: 16px;
    }
    
    .players-count {
        font-size: 12px;
        margin-top: 12px;
    }
    
    .gaming-excellence h2,
    .selection-guide h2,
    .expert-analysis h2 {
        font-size: 28px;
    }
    
    .guide-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .age-modal-content {
        padding: 30px;
        margin: 20px;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-method {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .filter-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-tab {
        flex: none;
        min-width: auto;
        width: 100%;
    }
    
    .casino-card {
        padding: 20px 15px;
        margin: 0;
    }
    
    .casino-badges > div {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .casino-logo {
        width: 70px;
        height: 70px;
    }
    
    .casino-info h3 {
        font-size: 22px;
    }
    
    .bonus-offer h4 {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .feature {
        padding: 8px;
        font-size: 12px;
    }
    
    .visit-btn {
        padding: 16px 14px;
        font-size: 15px;
    }
    
    .visit-btn span {
        font-size: 15px;
    }
    
    .visit-btn small {
        font-size: 11px;
    }
    
    .responsible-content {
        gap: 20px;
    }
    
    .responsible-message h3 {
        font-size: 24px;
    }
    
    .age-modal-content {
        padding: 25px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 0;
    z-index: 10001;
    transform: translateY(100%);
    transition: all 0.4s ease;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #f59e0b;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 5px;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-accept, .cookie-decline {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, #dc2626, #e11d48);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #be185d, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
}

.cookie-decline {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #475569;
}

.cookie-decline:hover {
    background: #475569;
    color: white;
    border-color: #64748b;
    transform: translateY(-2px);
}

.cookie-policy-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 2px solid transparent;
}

.cookie-policy-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px 16px;
    }
    
    .cookie-text {
        align-items: center;
        text-align: center;
    }
    
    .cookie-text h4 {
        font-size: 18px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .cookie-accept, .cookie-decline {
        flex: 1;
        min-width: 130px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .cookie-policy-link {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .cookie-text i {
        font-size: 24px;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-accept, .cookie-decline {
        flex: none;
        width: 100%;
    }
}