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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(180deg, #fef9f3 0%, #faf5f0 100%);
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    box-shadow: 0 4px 24px rgba(13, 148, 136, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 8px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 8px;
    right: 8px;
    height: 6px;
    background: white;
    border-radius: 1px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.95) 0%, rgba(20, 184, 166, 0.9) 50%, rgba(45, 212, 191, 0.85) 100%), url('../4c38e070d5.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.98;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.block-content {
    margin-bottom: 40px;
}

.block-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.block-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.important-notice {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border: 2px solid #14b8a6;
    border-left: 6px solid #0d9488;
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12);
    position: relative;
}

.important-notice::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.notice-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.notice-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.help-resources-notice {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #14b8a6;
}

.help-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.help-link-item {
    display: inline-block;
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.help-link-item:hover {
    color: #ec4899;
    border-bottom-color: #ec4899;
    transform: translateX(4px);
}

.page-description {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    font-style: italic;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.main-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 12px 0;
}

.main-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.main-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

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

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #6b7280;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.twitter-icon {
    width: 16px;
    height: 16px;
    fill: #1d9bf0;
}

.twitter-handle {
    color: #1d9bf0;
    text-decoration: none;
}

.fact-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4f46e5;
}

.check-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Sportsbook Cards */
.sportsbook-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 3px solid #14b8a6;
    border-radius: 24px;
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sportsbook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 50%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.sportsbook-card:hover {
    box-shadow: 0 16px 48px rgba(13, 148, 136, 0.25), 0 4px 16px rgba(236, 72, 153, 0.15);
    transform: translateY(-6px);
    border-color: #ec4899;
}

.sportsbook-card:hover::before {
    opacity: 1;
}

.card-content {
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-direction: column;
}

.rank-number {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.operator-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.offer-content {
    flex: 1;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-code {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border-radius: 16px;
    border: 1px solid #b2f5ea;
    box-shadow: inset 0 2px 8px rgba(13, 148, 136, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 12px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.stat-label {
    font-size: 11px;
    color: #0d9488;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section {
    text-align: center;
}

.visit-btn {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 24px rgba(236, 72, 153, 0.4), 0 2px 8px rgba(236, 72, 153, 0.2);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.visit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.visit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.visit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5), 0 4px 12px rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, #f472b6 0%, #fb7185 50%, #fda4af 100%);
}

.visit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.terms-text {
    grid-column: 1 / -1;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.payment-methods {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.payments-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    text-align: right;
}

.payment-icons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Help Resources */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.resource-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #14b8a6;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.12);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.2);
    border-color: #ec4899;
}

.resource-card h3 {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.help-link {
    display: inline-block;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.4s;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
    position: relative;
    z-index: 1;
}

.help-link:hover {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.emergency-contact {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    color: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.emergency-contact h3 {
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #cbd5e1;
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 50%, #ec4899 100%);
}

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

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

.site-pages-section h3 {
    color: #14b8a6;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.site-pages-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-pages-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.site-pages-links a:hover {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    transform: translateX(6px);
    border-left-color: #ec4899;
}

.disclaimer-section h3 {
    color: #14b8a6;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.responsible-gaming h3 {
    color: #14b8a6;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.rg-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rg-link {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    color: #1e293b;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rg-link:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border-color: #14b8a6;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.2);
    color: #0d9488;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #14b8a6;
    text-decoration: none;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer .age-badge {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 70px;
    justify-content: center;
    transition: all 0.3s;
}

.footer .age-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

.footer .age-badge .age-icon {
    font-size: 16px;
    line-height: 1;
}

.stats-section {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}


/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.show {
    display: flex;
}

.age-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.age-modal h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.age-modal p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.age-modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.age-btn-no {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.age-btn-no:hover {
    background: #e5e7eb;
}

.age-modal-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .main-content {
        padding: 24px 16px;
    }

    .card-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .stats-section {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .article-meta {
        flex-wrap: wrap;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .main-content h1 {
        font-size: 24px;
    }

    .offer-title {
        font-size: 18px;
    }

    .age-modal-content {
        padding: 30px 20px;
    }

    .age-modal h2 {
        font-size: 24px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .stats-section {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}