/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --card-shadow: 0 20px 40px rgba(0,0,0,0.1);
    --hover-shadow: 0 30px 60px rgba(0,0,0,0.15);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-accent: #16213e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #e2e8f0;
    background: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background: rgba(15, 15, 35, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
    z-index: -1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
    transition: all 0.3s ease;
}

.nav-brand h1:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 25px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

/* Hero Section */
.hero {
    background: var(--bg-secondary);
    color: #ffffff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.8;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: translate(-50%, -50%) rotate(30deg);
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(30deg); }
    50% { transform: translate(-48%, -52%) rotate(35deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-gradient);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
    animation: slideInUp 1s ease-out 0.4s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(240, 147, 251, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Top Casinos Section */
.top-casinos {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.top-casinos h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.top-casinos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.casino-card {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.casino-card:hover::before {
    left: 100%;
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: rgba(79, 172, 254, 0.3);
}

.casino-rank {
    width: 70px;
    height: 70px;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin-right: 2rem;
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.casino-rank::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover .casino-rank::before {
    opacity: 1;
}

.casino-rank span {
    position: relative;
    z-index: 1;
}

.casino-info {
    flex: 1;
    margin-right: 2rem;
}

.casino-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.stars {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.score {
    background: var(--accent-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.features li {
    padding: 0.5rem 0;
    color: #cbd5e0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

.casino-bonus {
    text-align: center;
    min-width: 200px;
}

.bonus-text {
    background: var(--secondary-gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-text::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.play-button {
    display: block;
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
}

.features h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--hover-shadow);
    border-color: rgba(79, 172, 254, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.5));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.feature-item p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 4rem 0;
    background: var(--bg-accent);
    border-left: 5px solid var(--secondary-gradient);
    position: relative;
    overflow: hidden;
}

.responsible-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0.05;
}

.responsible-gaming h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.responsible-gaming p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.responsible-gaming ul {
    list-style: none;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.responsible-gaming li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #e2e8f0;
}

.responsible-gaming li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.responsible-gaming a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.responsible-gaming a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: #4facfe;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
    position: relative;
    z-index: 1;
}

/* Reviews Page Styles */
.reviews {
    padding: 3rem 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.review-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 2px solid #e2e8f0;
}

.review-meta {
    flex: 1;
    margin-right: 2rem;
}

.review-meta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-cta {
    text-align: center;
}

.bonus-highlight {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-button {
    display: block;
    background: #4ecdc4;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.review-button:hover {
    background: #45b7af;
}

.review-content {
    padding: 2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-section ul {
    list-style: none;
}

.review-section li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-tag {
    background: #e2e8f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4a5568;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 10px;
}

.pros {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.cons {
    background: #fff5f5;
    border-left: 4px solid #f56565;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Review Criteria */
.review-criteria {
    padding: 3rem 0;
    background: #f8fafc;
}

.review-criteria h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.criteria-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.criteria-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Bonuses Page Styles */
.featured-bonuses {
    padding: 3rem 0;
    background: white;
}

.featured-bonuses h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.bonus-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.casino-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-info h3 {
    font-size: 1.3rem;
    color: #333;
}

.bonus-details {
    margin-bottom: 1.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.bonus-type {
    color: #666;
    margin-bottom: 0.3rem;
}

.bonus-extras {
    color: #4ecdc4;
    font-weight: 600;
}

.bonus-conditions {
    margin-bottom: 1.5rem;
}

.condition {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.condition .label {
    color: #666;
}

.condition .value {
    font-weight: 600;
    color: #333;
}

.bonus-button {
    width: 100%;
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.bonus-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Bonus Types */
.bonus-types {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-types h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.bonus-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.bonus-type-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-type-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-example {
    background: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Current Promotions */
.current-promotions {
    padding: 3rem 0;
    background: white;
}

.current-promotions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.promotion-list {
    max-width: 800px;
    margin: 0 auto;
}

.promotion-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
}

.promotion-date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.promotion-date .month {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.promotion-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.promotion-info {
    flex: 1;
    margin-right: 2rem;
}

.promotion-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.promotion-casinos {
    margin-top: 1rem;
}

.casino-tag {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.promotion-prize {
    text-align: center;
    min-width: 120px;
}

.promotion-prize strong {
    display: block;
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 0.2rem;
}

.promotion-prize span {
    font-size: 0.8rem;
    color: #666;
}

/* Bonus Tips */
.bonus-tips {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Wagering Calculator */
.wagering-calculator {
    padding: 3rem 0;
    background: white;
}

.wagering-calculator h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.calculator-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.calc-button {
    grid-column: 1 / -1;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.calc-button:hover {
    background: #5a67d8;
}

.calc-result {
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* FAQ */
.bonus-faq {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    .nav-brand h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .casino-rank {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .casino-info {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .casino-info h3 {
        font-size: 1.5rem;
    }
    
    .features li {
        padding-left: 0;
        text-align: center;
    }
    
    .features li::before {
        position: static;
        margin-right: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-brand h1 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .top-casinos,
    .features {
        padding: 4rem 0;
    }
    
    .casino-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .casino-rank {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .casino-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .rating {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .score {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .casino-bonus {
        min-width: auto;
        width: 100%;
    }
    
    .bonus-text {
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .play-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 2rem 1rem;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .responsible-gaming {
        padding: 3rem 0;
        border-left: none;
        border-top: 5px solid var(--secondary-gradient);
    }
    
    .responsible-gaming h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .responsible-gaming li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .review-meta {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .review-meta h2 {
        font-size: 1.5rem;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promotion-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .promotion-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .promotion-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .casino-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .casino-rank {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .casino-info h3 {
        font-size: 1.1rem;
    }
    
    .features li {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 1.5rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .responsible-gaming {
        padding: 2rem 0;
    }
    
    .responsible-gaming h2 {
        font-size: 1.3rem;
    }
    
    .responsible-gaming li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #e2e8f0;
        --text-secondary: #a0aec0;
    }
}
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #e2e8f0;
        --text-secondary: #a0aec0;
    }
}
        text-align: center;
    }
    
    .review-meta {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .promotion-item {
        flex-direction: column;
        text-align: center;
    }
    
    .promotion-date,
    .promotion-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}