/*
Theme Name: BetPortal Landing
Description: WordPress theme for BetPortal landing page
Version: 1.0
Author: Bloc4488
Text Domain: betportal
*/

:root {
    /* Main colors */
    --color-dark-background: #0f1219;
    --color-dark-background-header: linear-gradient(90deg, rgba(13, 23, 31, .95) 0%, rgba(29, 47, 63, .9) 50%, rgba(13, 23, 31, .95) 100%);
    --color-accent-green: #00FF00;
    --color-text-light: #FFFFFF;
    --color-text-secondary: #A0AEC0;
    --color-button-dark: #2D3748;
    --color-search-border: #800080;
    --color-button-hover: #4A5568;
    
    /* Fonts */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font sizes */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 24px;
    --font-size-hero-title: 48px;
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 100px;
    --spacing-lg: 100px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
	
	/* Betportal-specific design tokens */
    --betportal-green: 160 84% 42%;
    --betportal-green-light: 160 84% 50%;
    --betportal-green-dark: 160 84% 35%;
    --crypto-purple: 280 100% 70%;
    --crypto-pink: 320 100% 75%;
    --crypto-orange: 35 100% 65%;
    --crypto-yellow: 50 100% 70%;
    --casino-dark: 220 15% 8%;
    --casino-surface: 220 15% 12%;
    --casino-elevated: 220 15% 18%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(160 84% 35%), hsl(160 84% 50%));
    --gradient-crypto: linear-gradient(135deg, hsl(280 100% 70%), hsl(320 100% 75%), hsl(35 100% 65%));
    --gradient-hero: linear-gradient(135deg, hsl(280 100% 70%) 0%, hsl(320 100% 75%) 50%, hsl(50 100% 70%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(220 15% 8%), hsl(220 15% 5%));
    --gradient-card: linear-gradient(145deg, hsl(220 15% 12%), hsl(220 15% 18%));
    
    /* Shadows and glows */
    --shadow-green: 0 0 20px hsl(160 84% 42% / 0.3);
    --shadow-crypto: 0 0 30px hsl(280 100% 70% / 0.2);
    --shadow-elevation: 0 8px 32px hsl(220 15% 3% / 0.6);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-glow: box-shadow 0.3s ease-in-out;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
    background-color: var(--color-dark-background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* WordPress Admin Bar - remove margins */
#wpadminbar {
    margin: 0 !important;
    padding: 0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
    margin-bottom: var(--spacing-sm);
}

/* Container */
.container {
    margin: 0;
    padding: 0 var(--spacing-md);
}

/* Header - Fixed */
.site-header {
    background: var(--color-dark-background-header);
    padding: 0; /* Remove all padding */
    border-bottom: 1px solid var(--color-button-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Logo left, button right */
    align-items: center;
    padding: 0; /* Remove all padding */
    margin-left: 0; /* Remove left margin */
    left: 0; /* Force position to left */
    padding-left: var(--spacing-lg); /* Logo offset from left edge 100px */
    padding-right: var(--spacing-lg); /* Button offset from right edge */
    margin: 0; /* Remove all margins */
    min-height: 40px; /* Minimum height */
    padding-bottom: 0; /* Remove bottom padding */
    padding-top: 0; /* Remove top padding */
}

.logo-image {
    height: 5.5rem; /* Logo height */
    width: auto; /* Width adjusts automatically */
    max-width: 400px; /* Maximum width */
    object-fit: contain; /* Preserve proportions */
    margin-bottom: 0; /* Remove bottom margin */
    margin-top: 0; /* Remove top margin */
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: 0; /* Remove any left margins */
    padding-left: 0; /* Remove left padding */
    left: 0; /* Force position to left */
    margin: 0; /* Remove all margins */
}

.site-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 20px;
    color: var(--color-dark-background);
}

.logo-text {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
}

/* Base styles for logos */
.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

.play-button {
    height: 3rem;
    background: linear-gradient(135deg, #3aa660 0%, #52ea88 100%);
    color: white;
    font-weight: bold;
    padding: 0 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(58, 166, 96, 0.25);
    transition: all 300ms;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(58, 166, 96, 0.4);
}

.play-button:active {
    transform: translateY(0);
}

/* Navigation */
.main-navigation {
    background-color: var(--color-button-dark);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 80px; /* Header height */
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu li a {
    color: var(--color-text-light);
    text-decoration: none;
    padding: var(--spacing-sm) 0;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-accent-green);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent-green);
}

/* Main Content - Flexbox for sticky footer */
.site-main {
    flex: 1 0 auto;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

/* Footer - Sticky at bottom */
.site-footer {
    background: #030A0D;
    color: var(--color-text-light);
    padding: 2rem 0;
    border-top: 1px solid var(--color-button-dark);
    margin-top: auto;
}

.footer-content {
    padding: 0 100px;
    margin: 0 auto;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.age-badge {
    width: 2rem;
    height: 2rem;
    border: 2px solid #3aa660;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 166, 96, 0.1);
}

.age-badge span {
    color: #3aa660;
    font-weight: bold;
    font-size: 0.75rem;
}

.responsible-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.highlight {
    color: #52ea88;
    font-weight: bold;
}

.licensing-info {
    margin-bottom: 2rem;
}

.licensing-info p {
    color: #525252;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

.license-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.license-badge {
    background: rgba(29, 47, 63, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #3aa660 0%, #52ea88 100%);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
}

.license-badge span {
    color: #a3a3a3;
    font-size: 0.75rem;
}

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

.copyright {
    color: #a3a3a3;
    font-size: 0.875rem;
    margin: 0;
}

.disclaimer {
    color: #525252;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 0 var(--spacing-md);
    }
    
    .site-header {
        padding: var(--spacing-sm) 0;
    }
    
    .header-content {
        padding-left: var(--spacing-sm);
    }
    
    .logo-text {
        font-size: var(--font-size-h2);
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 var(--spacing-sm);
    }
    
    .site-header {
        padding: var(--spacing-sm) 0;
    }
    
    .header-content {
        padding-left: var(--spacing-sm);
        justify-content: center; /* Center logo on mobile */
    }
    
    .logo-text {
        font-size: var(--font-size-h3);
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .main-navigation {
        top: 80px; /* Reduce offset for mobile */
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .site-main {
        padding: var(--spacing-xl) 0;
    }
    
    h1 {
        font-size: var(--font-size-h2);
    }
    
    h2 {
        font-size: var(--font-size-h3);
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .site-header {
        padding: var(--spacing-xs) 0;
    }
    
    .header-content {
        padding-left: var(--spacing-xs);
        justify-content: flex-start; /* Return logo to left */
    }
    
    .logo-text {
        font-size: var(--font-size-large);
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .main-navigation {
        top: 70px;
    }
    
    .site-main {
        padding: var(--spacing-lg) 0;
    }
    
    .site-footer {
        padding: var(--spacing-lg) 0;
    }
    
    h1 {
        font-size: var(--font-size-h3);
    }
    
    h2 {
        font-size: var(--font-size-large);
    }
    
    h3 {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .header-content {
        padding-left: var(--spacing-xs);
    }
    
    .logo-text {
        font-size: var(--font-size-base);
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .main-navigation {
        top: 60px;
    }
    
    .site-main {
        padding: var(--spacing-md) 0;
    }
    
    .site-footer {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 360px) {
    .header-content {
        padding-left: var(--spacing-xs);
    }
    
    .logo-text {
        font-size: var(--font-size-small);
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .main-navigation {
        top: 55px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .site-header {
        padding: var(--spacing-xs) 0;
    }
    
    .main-navigation {
        top: 50px;
    }
    
    .site-main {
        padding: var(--spacing-md) 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Print styles */
@media print {
    .site-header,
    .main-navigation,
    .site-footer {
        position: static;
        box-shadow: none;
    }
    
    .site-main {
        padding: 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Specifically for first Elementor section */
.elementor-section:first-child {
    margin-top: 0;
    padding-top: 120px;
}

/* Additional styles for Elementor */
.elementor-page .elementor-top-section:first-child {
    padding-top: 120px !important;
}

/* Remove conflicts with Elementor layout */
.elementor-page .elementor {
    min-height: auto;
}

/* Styles for Elementor on mobile devices */
@media (max-width: 768px) {
    .elementor-location-single .elementor,
    .elementor-location-archive .elementor,
    .elementor-page .elementor {
        padding-top: 100px;
    }
    
    .elementor-section:first-child,
    .elementor-page .elementor-top-section:first-child {
        padding-top: 100px !important;
    }
}

/* Responsive footer for mobile devices */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0;
        margin-bottom: 3.125rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .responsible-gaming {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .age-warning {
        gap: 0.75rem;
    }
    
    .age-badge {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .responsible-text {
        font-size: 0.75rem;
        line-height: 1.5;
        display: block;
    }
    
    .licensing-info {
        margin-bottom: 1.5rem;
    }
    
    .licensing-info p {
        color: #a3a3a3;
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    /* Hide license badges on mobile */
    .license-badges {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .copyright {
        color: #737373;
        font-size: 0.75rem;
    }
    
    .disclaimer {
        color: #a3a3a3;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

/* Responsive header for mobile devices */
@media (max-width: 768px) {
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: 60px;
        justify-content: space-between !important; /* Fix layout */
        flex-direction: row !important; /* Ensure horizontal layout */
    }
    
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
    
    /* Show mobile logo and hide desktop */
    .logo-desktop {
        display: none !important;
    }
    
    .logo-mobile {
        display: block !important;
    }
    
    /* Fix button position */
    .header-actions {
        display: flex !important;
        align-items: center;
        margin-left: auto; /* Force to right */
    }
}

/* Footer Navigation Buttons */
.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.nav-button {
    background: #030A0D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 300ms;
    text-decoration: none;
    display: block;
}

.nav-button:hover {
    background: rgba(58, 166, 96, 0.1);
    border-color: rgba(58, 166, 96, 0.3);
    transform: translateY(-2px);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button-content span {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Responsive Footer Buttons */
@media (max-width: 768px) {
    .footer-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   PROMO CARD WIDGET STYLES
======================================== */

.promo-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid hsl(220 15% 20%);
    width: 100%;
    height: 100%;
	cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevation), var(--shadow-green);
    border-color: hsl(var(--betportal-green) / 0.3);
}

/* Badge Styles */
.promo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-hot {
    background: hsl(0 84% 60%);
    color: white;
}

.badge-live {
    background: hsl(var(--betportal-green));
    color: white;
}

.badge-vip {
    background: var(--gradient-crypto);
    color: white;
}

.badge-daily {
    background: hsl(var(--crypto-purple));
    color: white;
}

.badge-custom {
    background: hsl(0 84% 60%);
    color: white;
}

/* Image Section */
.promo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
	display: block;
}

.promo-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
	object-position: center;
    transition: var(--transition-smooth);
	display: block;
	margin: 0;
	padding: 0;
	border: none;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, hsl(var(--casino-dark) / 0.8) 0%, transparent 100%);
    z-index: 2;
}

/* Content Section */
.promo-content {
    padding: 1.5rem;
    background: hsl(var(--casino-surface));
}

.content-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
	flex: 1;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: auto;
}


.icon-container {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.promo-card:hover .icon-container {
    transform: scale(1.1);
    box-shadow: var(--shadow-green);
}

.icon-container svg {
    width: 24px;
    height: 24px;
    color: white;
}

.text-content {
    flex: 1;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.subtitle {
    color: hsl(var(--betportal-green));
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Title tag specific styles */
.title h1,
.title h2,
.title h3,
.title h4,
.title h5,
.title h6,
.title div,
.title span,
.title p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    line-height: inherit;
}

.description {
    color: hsl(210 6% 70%);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	min-height: 2.8rem;
}

/* Modal */
.promo-modal { position: fixed; inset: 0; display: none; z-index: 9999; padding: 1rem 0.25rem 1rem 0.25rem; box-sizing: border-box; }
.promo-modal.is-open { display: block; }
.promo-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); }
.promo-modal__dialog { 
  position: relative; 
  max-width: 600px; 
  max-height: calc(100vh - 2rem); 
  margin: 0 auto; 
  top: 50%; 
  transform: translateY(-50%); 
  background: linear-gradient(135deg, hsl(220 25% 15%) 0%, hsl(220 20% 12%) 100%); 
  border: 1px solid hsl(var(--betportal-green) / 0.2); 
  border-radius: 1rem; 
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); 
  padding: 1.5rem; 
  display: flex; 
  flex-direction: column; 
  overflow-y: auto; 
}
.promo-modal__header { margin-bottom: 1.5rem; }
.promo-modal__close { 
  position: absolute; 
  top: 1rem; 
  right: 1rem; 
  background: rgba(255,255,255,0.1); 
  color: #fff; 
  border: none; 
  font-size: 1.5rem; 
  cursor: pointer; 
  z-index: 1; 
  width: 32px; 
  height: 32px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: background 0.2s;
}
.promo-modal__close:hover { background: rgba(255,255,255,0.2); }
.promo-modal__title { 
  color: hsl(var(--betportal-green)); 
  margin: 0; 
  font-size: 1.5rem; 
  font-weight: bold; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}
.promo-modal__stats { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
  margin-bottom: 1.5rem; 
}
.stat-item { 
  background: rgba(0,0,0,0.3); 
  border: 1px solid hsl(220 15% 25%); 
  border-radius: 0.5rem; 
  padding: 1rem; 
}
.stat-label { 
  color: #9ca3af; 
  font-size: 0.875rem; 
  margin-bottom: 0.25rem; 
}
.stat-value { 
  color: #fff; 
  font-size: 1.25rem; 
  font-weight: bold; 
}
.promo-modal__features { margin-bottom: 1.5rem; }
.promo-modal__features h3 { 
  color: #fff; 
  font-size: 1rem; 
  font-weight: bold; 
  margin: 0 0 1rem 0; 
  letter-spacing: 0.5px;
}
.promo-modal__features ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}
.promo-modal__features li { 
  color: #cbd5e1; 
  margin-bottom: 0.5rem; 
  position: relative; 
  padding-left: 1.5rem; 
}
.promo-modal__features li:before { 
  content: "⭐"; 
  position: absolute; 
  left: 0; 
  color: hsl(var(--betportal-green)); 
}
.promo-modal__content { 
  color: #cbd5e1; 
  line-height: 1.6; 
  margin-bottom: 1.5rem; 
}
.promo-modal__important { 
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(251, 146, 60, 0.05)); 
  border: 1px solid rgba(251, 146, 60, 0.2); 
  border-radius: 0.5rem; 
  padding: 1rem; 
  margin-bottom: 1.5rem; 
}
.important-label { 
  color: #fb923c; 
  font-weight: bold; 
  margin-bottom: 0.5rem; 
}
.promo-modal__important p { 
  color: #cbd5e1; 
  margin: 0; 
  font-size: 0.875rem; 
}
.promo-modal__actions { 
  display: flex; 
  justify-content: center; 
}
.modal-claim-btn { 
  background: hsl(var(--betportal-green)); 
  color: white; 
  border: none; 
  padding: 0.75rem 2rem; 
  border-radius: 0.5rem; 
  font-weight: bold; 
  font-size: 1rem; 
  cursor: pointer; 
  transition: all 0.2s; 
  text-transform: uppercase; 
  letter-spacing: 0.5px;
}
.modal-claim-btn:hover { 
  background: hsl(var(--betportal-green-dark)); 
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3); 
}

@media (max-width: 768px) {
  .promo-modal__dialog { 
    max-width: calc(100vw - 2rem); 
    padding: 1rem; 
  }
  .promo-modal__stats { 
    grid-template-columns: 1fr; 
    gap: 0.75rem; 
  }
  .stat-item { 
    padding: 0.75rem; 
  }
  .promo-modal__title { 
    font-size: 1.25rem; 
  }
}

@media (max-width: 480px) {
  .promo-modal { 
    padding: 0.5rem 0.25rem; 
  }
  .promo-modal__dialog { 
    max-width: calc(100vw - 0.5rem); 
    max-height: calc(100vh - 1rem); 
    padding: 1rem; 
  }
  .promo-modal__close { 
    top: 0.5rem; 
    right: 0.5rem; 
    width: 28px; 
    height: 28px; 
    font-size: 1.25rem; 
  }
  .promo-modal__title { 
    font-size: 1.125rem; 
    margin-bottom: 1rem; 
  }
  .stat-item { 
    padding: 0.5rem; 
  }
  .stat-value { 
    font-size: 1.125rem; 
  }
  .promo-modal__features h3 { 
    font-size: 0.875rem; 
  }
  .modal-claim-btn { 
    padding: 0.5rem 1.5rem; 
    font-size: 0.875rem; 
  }
}

.promo-button {
    display: block;
    width: 100%;
    background: hsl(var(--betportal-green));
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-sizing: border-box;
	position: relative;
	z-index: 10;
}

.promo-button:hover {
    background: hsl(var(--betportal-green-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-card {
        width: 100%;
        margin: 0;
    }
    
    .promo-image {
        height: 160px;
    }
    
    .promo-content {
        padding: 1.25rem;
    }
    
    .content-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
    }
    
    .icon-container svg {
        width: 20px;
        height: 20px;
    }
    
    .title {
        font-size: 1.125rem;
    }
    
    .description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .promo-card {
        width: 100%;
        margin: 0;
    }
    
    .promo-image {
        height: 140px;
    }
    
    .promo-content {
        padding: 1rem;
    }
    
    .title {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.75rem;
    }
    
    .promo-button {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   PROMOTIONS GRID WIDGET STYLES
======================================== */

.promotions-section {
    padding: 5rem 0;
    background: hsl(var(--casino-dark));
    width: 100%;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Section title tag specific styles */
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6,
.section-title div,
.section-title span,
.section-title p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    line-height: inherit;
}

.section-title .text-foreground {
    color: white;
}

.section-title .text-betportal {
    color: hsl(var(--betportal-green));
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(210 6% 70%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.featured-card {
    grid-column: span 1;
}

.view-all-container {
    text-align: center;
}

.view-all-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-green);
    box-sizing: border-box;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green), var(--shadow-elevation);
    background: hsl(var(--betportal-green-dark));
}

/* Responsive Grid - Only for container padding and typography */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .view-all-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* ========================================
   HOW TO CLAIM WIDGET STYLES
======================================== */

.howto-section {
    padding: 5rem 0;
    background: transparent;
    width: 100%;
}

.howto-section .container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.howto-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.howto-section .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.howto-section .section-title .text-foreground { color: #ffffff; }
.howto-section .section-title .text-betportal { color: hsl(var(--betportal-green)); }

.howto-section .section-subtitle {
    font-size: 1.125rem;
    color: hsl(210 6% 70%);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    position: relative;
}

.connector-line {
    display: none;
}

@media (min-width: 1024px) {
    .connector-line {
        display: block;
        position: absolute;
        top: 2rem;
        right: -0.5rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, hsl(var(--betportal-green)), transparent);
    }
}

.step-inner { text-align: center; }

.step-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    border-radius: 9999px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
}

.step-icon svg { width: 32px; height: 32px; color: #ffffff; }
.icon-svg { display: block; }
.icon-user-plus { transform: translateX(-1px); }

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background: hsl(var(--betportal-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span { font-size: 10px; font-weight: 700; color: hsl(var(--casino-dark)); }

.step-title { color: #ffffff; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-description { color: hsl(210 6% 70%); margin-bottom: 0.75rem; }

.step-highlight { display: inline-block; padding: 0.25rem 0.75rem; background: hsl(var(--betportal-green) / 0.1); border-radius: 9999px; }
.step-highlight span { color: hsl(var(--betportal-green)); font-weight: 600; font-size: 0.875rem; }

.howto-cta { text-align: center; margin-top: 1rem; }
.howto-cta .btn { display: inline-block; padding: 0.875rem 1.5rem; border-radius: 0.75rem; font-weight: 700; text-decoration: none; transition: var(--transition-smooth); }
.howto-cta .btn + .btn { margin-left: 1rem; }
.howto-cta .btn-primary { background: var(--gradient-primary); color: #ffffff; box-shadow: var(--shadow-green); }
.howto-cta .btn-primary:hover { transform: translateY(-2px); }
.howto-cta .btn-outline { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.15); }
.howto-cta .btn-outline:hover { border-color: hsl(var(--betportal-green)); color: hsl(var(--betportal-green)); }

.promo-box { margin-top: 3rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.promo-box-inner { background: var(--gradient-card); border: 1px solid hsl(220 15% 20%); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-elevation); }
.promo-title { text-align: center; color: #ffffff; font-weight: 700; margin-bottom: 0.5rem; }
.promo-row { display: flex; align-items: center; gap: 0.5rem; }
.promo-code { flex: 1; background: hsl(var(--casino-surface)); border: 1px solid hsl(220 15% 20%); border-radius: 0.75rem; padding: 0.75rem 1rem; text-align: center; }
.code-value { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-weight: 800; color: hsl(var(--betportal-green)); font-size: 1.25rem; }
.btn-neon { background: var(--gradient-crypto); color: #ffffff; border: none; border-radius: 0.75rem; padding: 0.75rem 1rem; cursor: pointer; box-shadow: var(--shadow-crypto); }
.btn-neon:hover { transform: translateY(-2px); }
.promo-desc { text-align: center; color: hsl(210 6% 70%); margin-top: 0.5rem; font-size: 0.875rem; }

@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
    .howto-section { padding: 3rem 0; }
    .howto-section .section-header { margin-bottom: 2.5rem; }
    .howto-section .section-title { font-size: 2rem; }
    .howto-section .section-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
    .howto-cta .btn { width: 100%; text-align: center; }
    .howto-cta .btn + .btn { margin-left: 0; margin-top: 0.75rem; }
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1e26;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2e8549, #3aa660, #2e8549);
    border-radius: 10px;
    border: 1px solid #2e8549;
}


