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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: black;
    background-color: #f8f9fa;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: black;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
    filter: brightness(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    border-color: #dc2626;
    color: #dc2626;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: #012169;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    border-bottom: 2px solid #dc2626;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.top-nav-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    flex-shrink: 0;
    white-space: nowrap;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.deposit-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1;
    max-width: 900px;
}

.deposit-item {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-align: center;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.deposit-item:hover {
    background: rgba(220, 38, 38, 0.8);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.deposit-item.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: black;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.deposit-item.active:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
}

/* Coming Soon Styles */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 130px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.coming-soon-content h1 {
    font-size: 3rem;
    color: #012169;
    margin-bottom: 1rem;
}

.coming-soon-content h2 {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.coming-soon-content > p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #012169;
    margin-bottom: 1rem;
}

.feature-card p {
    color: black;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #dc2626;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.highlight-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 2rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
    color: black;
}

.notify-section {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    color: black;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.notify-section h3 {
    color: black;
    margin-bottom: 1rem;
}

.notify-section p {
    margin-bottom: 2rem;
    color: #e0e7ff;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.email-input:focus {
    outline: 2px solid #dc2626;
}

.alternative-options {
    margin-top: 4rem;
}

.alternative-options h3 {
    margin-bottom: 2rem;
    color: #012169;
}

.alternative-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Header */
.header {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #dc2626;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f8f9fa;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 2rem 0;
    background: linear-gradient(135deg, #012169, #1e3a8a);
}

.hero-content {
    display: grid;
    grid-template-columns: 2.5fr 0.8fr;
    gap: 2rem;
    align-items: center;
    color: white;
    z-index: 1;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    z-index: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-bg-img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 100%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Table of Contents */
.toc-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.toc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #012169, #dc2626, #1e3a8a);
}

.table-of-contents {
    text-align: center;
}

.toc-title {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.toc-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #012169, #dc2626);
    border-radius: 1px;
}

.toc-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.toc-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #374151;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.toc-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(1, 33, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

.toc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 33, 105, 0.15);
    border-color: #012169;
    color: #012169;
}

.toc-link:hover::before {
    left: 100%;
}

.toc-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(1, 33, 105, 0.2);
}

/* Casino Cards */
.casinos-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: black;
}

.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.casino-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(1, 33, 105, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
    min-height: auto;
    border: 1px solid rgba(1, 33, 105, 0.1);
    margin-bottom: 1rem;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #012169, #1e3a8a);
    border-radius: 16px 0 0 16px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1, 33, 105, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.casino-card.featured {
    border: 2px solid #dc2626;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
    background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.casino-card.featured::before {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    width: 5px;
}

/* TOP Casino Crown Styles */
.casino-card.top-1 .casino-logo-section::before,
.casino-card.top-2 .casino-logo-section::before,
.casino-card.top-3 .casino-logo-section::before {
    content: '👑';
    position: absolute;
    top: -8px;
    right: 8px;
    font-size: 1.8rem;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

/* Gold Crown for TOP 1 */
.casino-card.top-1 .casino-logo-section::before {
    filter: drop-shadow(0 3px 6px rgba(255,215,0,0.6)) 
            sepia(1) saturate(2) hue-rotate(35deg) brightness(1.2);
    animation: goldFloat 3s ease-in-out infinite;
}

/* Silver Crown for TOP 2 */
.casino-card.top-2 .casino-logo-section::before {
    filter: drop-shadow(0 3px 6px rgba(192,192,192,0.6)) 
            sepia(0) saturate(0) brightness(1.1);
}

/* Bronze Crown for TOP 3 */
.casino-card.top-3 .casino-logo-section::before {
    filter: drop-shadow(0 3px 6px rgba(205,127,50,0.6)) 
            sepia(1) saturate(1.5) hue-rotate(25deg) brightness(0.9);
}

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

@keyframes goldFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-5deg) scale(1); 
        filter: drop-shadow(0 3px 6px rgba(255,215,0,0.6)) 
                sepia(1) saturate(2) hue-rotate(35deg) brightness(1.2);
    }
    50% { 
        transform: translateY(-3px) rotate(5deg) scale(1.05); 
        filter: drop-shadow(0 5px 10px rgba(255,215,0,0.8)) 
                sepia(1) saturate(2.5) hue-rotate(35deg) brightness(1.4);
    }
}

/* Make sure logo has relative positioning for crown placement */
.casino-logo {
    position: relative;
}

/* Hover effects for crowns */
.casino-card:hover.top-1 .casino-logo-section::before {
    transform: translateY(-5px) rotate(10deg) scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(255,215,0,0.8)) 
            sepia(1) saturate(3) hue-rotate(35deg) brightness(1.4);
}

.casino-card:hover.top-2 .casino-logo-section::before {
    transform: translateY(-5px) rotate(10deg) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(192,192,192,0.8)) 
            sepia(0) saturate(0) brightness(1.3);
}

.casino-card:hover.top-3 .casino-logo-section::before {
    transform: translateY(-5px) rotate(10deg) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(205,127,50,0.8)) 
            sepia(1) saturate(2) hue-rotate(25deg) brightness(1.1);
}

.casino-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.casino-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
    width: 160px;
    border-radius: 0;
    border: none;
    margin-right: 1.5rem;
    height: 120px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    background: white;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(1, 33, 105, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid #f1f5f9;
}

.casino-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: auto;
    position: relative;
    height: 100%;
}

.casino-logo-section h3 {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1a202c;
    letter-spacing: 0.3px;
}

.casino-logo:hover {
    transform: scale(1.1) rotate(2deg);
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.casino-image {
    display: none;
}

.casino-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-details {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-left: 0;
    justify-content: space-between;
    min-height: 120px;
}

.bonus-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 2.5;
    height: 100%;
    justify-content: flex-start;
}

.bonus {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    text-align: left;
    border: none;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    transform: skewX(-15deg);
}


.deposit-info {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #dc2626;
    border-left: 4px solid #dc2626;
    height: auto;
    align-items: center;
}

.min-deposit, .max-withdrawal {
    font-weight: 600;
    color: #dc2626;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    background: white;
    border-radius: 4px;
    flex: 1;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    min-width: 160px;
    max-width: 160px;
    flex-shrink: 0;
    padding: 0.5rem 0;
    background: transparent;
    border-radius: 0;
    border: none;
    align-content: flex-start;
    height: 100%;
}

.payment-methods span {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    color: white;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(1, 33, 105, 0.2);
    width: 60px;
    text-align: center;
    flex: 0 0 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-methods span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 33, 105, 0.3);
}

.payment-methods span:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.highlights {
    color: #374151;
    font-style: italic;
    font-size: 0.85rem;
    font-weight: 500;
    flex: 2;
    text-align: left;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e5e7eb);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #1e3a8a;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    height: 100%;
}

.highlights::before {
    content: '✨';
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1.1rem;
    opacity: 0.7;
}


.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 140px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    margin-top: 0;
    height: 100%;
    justify-content: center;
}

.casino-cta .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.casino-cta .btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.casino-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.4);
}

.casino-cta .btn-outline {
    border: 2px solid #012169;
    color: #012169;
    background: white;
}

.casino-cta .btn-outline:hover {
    background: #012169;
    color: white;
    transform: translateY(-2px);
}

.casino-cta .btn-outline {
    color: black;
    border-color: #e5e7eb;
    background: white;
}

.winner-highlight {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #dc2626;
    margin-top: 2rem;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.info-section p {
    color: black;
}

.info-section h2, .info-section h3, .info-section h4 {
    color: #1a1a1a;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reviews-section p {
    color: black;
}

.reviews-section h2, .reviews-section h3, .reviews-section h4 {
    color: #1a1a1a;
}

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc2626;
}

.review-card h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.review-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.review-image {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-main-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-text {
    flex: 1;
}

.review-btn {
    width: 100%;
    text-align: center;
    justify-self: stretch;
}

/* Mobile optimization for review cards */
@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .review-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    .review-image {
        width: 100% !important;
        max-width: 280px !important;
        order: 1 !important;
    }
    
    .review-main-img {
        height: 160px !important;
        border-radius: 12px !important;
    }
    
    .review-text {
        order: 2 !important;
        text-align: center !important;
    }
    
    .review-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
    }
    
    .review-btn {
        min-height: 48px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        padding: 12px 24px !important;
    }
    
    /* Compact spacing for mobile reviews */
    .reviews-section {
        padding: 2rem 0 !important;
    }
    
    .reviews-section .container {
        padding: 0 1rem !important;
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626, #1e3a8a);
}

.bonuses-section h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.bonuses-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #012169, #dc2626);
    border-radius: 2px;
}

.bonuses-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.bonus-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 38, 0.3);
}

.bonus-card h4 {
    color: #012169;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-card .btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.bonus-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.bonus-info {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #012169;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-info p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bonus-info p:last-child {
    margin-bottom: 0;
}

/* Games Section */
.games-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626, #1e3a8a);
}

.games-section h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #012169, #dc2626);
    border-radius: 2px;
}

.games-section > .container > p {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.games-section h3, .games-section h4 {
    color: #1a1a1a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.game-category {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 38, 0.3);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 3px 6px rgba(1, 33, 105, 0.2));
}

.game-category h3 {
    color: #012169;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.game-category p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Payment Methods Section */
.payments-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.payments-section p {
    color: black;
}

.payments-section h2, .payments-section h3, .payments-section h4 {
    color: #1a1a1a;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #dc2626;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-method-card h4 {
    color: #012169;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.payment-method-card p {
    color: black;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Pros & Cons Section */
.pros-cons-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pros-cons-section p {
    color: black;
}

.pros-cons-section h2, .pros-cons-section h3, .pros-cons-section h4 {
    color: #1a1a1a;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 2rem;
    border-radius: 15px;
}

.pros {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-left: 5px solid #4caf50;
}

.cons {
    background: linear-gradient(135deg, #ffeee8, #ffcdd2);
    border-left: 5px solid #f44336;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 400;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 400;
}

/* How to Choose Section */
.how-to-choose-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.how-to-choose-section p {
    color: black;
}

.how-to-choose-section h2, .how-to-choose-section h3, .how-to-choose-section h4 {
    color: #1a1a1a;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.criterion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 4rem;
}

.criterion-number {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-section p {
    color: black;
}

.comparison-section h2, .comparison-section h3, .comparison-section h4 {
    color: #1a1a1a;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.comparison-card.highlighted {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #dc2626;
    position: relative;
}

.recommended {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-section p {
    color: black;
}

.faq-section h2, .faq-section h3, .faq-section h4 {
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.responsible-gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626, #1e3a8a);
}

.responsible-gaming-section h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.responsible-gaming-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #012169, #dc2626);
    border-radius: 2px;
}

.responsible-gaming-section > .container > p {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.responsible-gaming-tips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tip {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #012169, #dc2626);
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 38, 0.3);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 3px 6px rgba(1, 33, 105, 0.2));
}

.tip h4 {
    color: #012169;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tip p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Final Thoughts Section */
.final-thoughts-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.final-thoughts-section p {
    color: black;
}

.final-thoughts-section h2, .final-thoughts-section h3, .final-thoughts-section h4 {
    color: #1a1a1a;
}

.final-cta {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #012169, #1e3a8a);
    color: black;
    padding: 2rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-brand p {
    color: #e0e7ff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h5 {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a,
.footer-column span {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-column a:hover {
    color: #dc2626;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.warning-badge {
    background: #dc2626;
    color: black;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-warning span {
    font-size: 0.9rem;
    color: #f1f5f9;
}

.helpline {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.helpline a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .brand-logo-img {
        height: 35px;
    }
    
    .deposit-menu {
        gap: 0.25rem;
        padding: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .deposit-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }
    
    .header {
        top: 90px;
        padding: 0.5rem 0;
    }
    
    .hero {
        margin-top: 140px;
        padding: 1.5rem 0;
        min-height: 50vh;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta .btn {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-warning {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile footer logo optimization */
    .footer-logo {
        height: 40px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }
    
    .footer-brand {
        text-align: center !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }
    
    .footer-brand p {
        font-size: 0.85rem !important;
        text-align: center !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .casino-card {
        margin: 0 10px;
    }

    .casino-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .bonus-highlights {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    @media (max-width: 480px) {
        .games-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* TOC Mobile Styles */
    .toc-list {
        gap: 0.5rem;
    }
    
    .toc-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    @media (max-width: 480px) {
        .toc-list {
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .toc-link {
            width: 100%;
            max-width: 280px;
            text-align: center;
        }
    }
    
    .responsible-gaming-tips {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    @media (max-width: 480px) {
        .responsible-gaming-tips {
            grid-template-columns: 1fr;
        }
    }
}

/* Loading and Smooth Animations */
.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(2) {
    animation-delay: 0.1s;
}

.casino-card:nth-child(3) {
    animation-delay: 0.2s;
}

.casino-card:nth-child(4) {
    animation-delay: 0.3s;
}

.casino-card:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    /* Typography Optimization for Mobile */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
    }
    
    h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        font-weight: 600 !important;
    }
    
    p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Container and Spacing */
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    
    /* Touch-Friendly Buttons */
    .btn {
        min-height: 44px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        touch-action: manipulation;
    }
    
    /* Casino Cards Mobile Override */
    .casino-card {
        flex-direction: column !important;
        align-items: center !important;
        padding: 1.25rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .casino-header {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
        height: auto !important;
    }
    
    .casino-logo {
        width: 70px !important;
        height: 70px !important;
    }
    
    .casino-logo-section h3 {
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .casino-details {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-left: 0 !important;
        width: 100% !important;
        min-height: auto !important;
    }
    
    .bonus-section {
        width: 100% !important;
        gap: 0.5rem !important;
    }
    
    .bonus {
        font-size: 0.85rem !important;
        padding: 0.75rem !important;
        min-height: auto !important;
        line-height: 1.4 !important;
    }
    
    .deposit-info {
        width: 100% !important;
        padding: 0.5rem !important;
    }
    
    .min-deposit, .max-withdrawal {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }
    
    .payment-methods {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        justify-content: center !important;
        padding: 0.5rem 0 !important;
    }
    
    .payment-methods span {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        min-width: 50px !important;
        margin: 2px !important;
    }
    
    .highlights {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 0.75rem !important;
        min-height: auto !important;
        height: auto !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .casino-cta {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        height: auto !important;
        margin-top: 0.5rem !important;
    }
    
    .casino-cta .btn {
        flex: 1 !important;
        max-width: 140px !important;
        padding: 10px 14px !important;
        font-size: 0.8rem !important;
        min-height: 44px !important;
    }
    
    /* TOC Mobile Optimization */
    .toc-section {
        padding: 1rem 0 !important;
    }
    
    .toc-title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .toc-link {
        padding: 12px 16px !important;
        font-size: 0.8rem !important;
        min-height: 44px !important;
        min-width: 120px !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0 !important;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-cta .btn {
        min-width: 160px !important;
        margin: 0.25rem !important;
    }
    
    /* Sections Mobile Spacing */
    .bonuses-section,
    .games-section,
    .responsible-gaming-section,
    .casinos-section {
        padding: 2rem 0 !important;
    }
    
    /* Bonus/Game/Tip Cards Mobile */
    .bonus-card,
    .game-category,
    .tip {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .bonus-card h4,
    .game-category h3,
    .tip h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .bonus-card p,
    .game-category p,
    .tip p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .game-icon,
    .tip-icon {
        font-size: 2.2rem !important;
        margin-bottom: 0.75rem !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .casino-card {
        padding: 1rem !important;
        margin: 0 8px 1rem 8px !important;
    }
    
    .casino-logo {
        width: 60px !important;
        height: 60px !important;
    }
    
    .bonus {
        font-size: 0.8rem !important;
        padding: 0.6rem !important;
    }
    
    .payment-methods span {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
        min-width: 45px !important;
    }
    
    .casino-cta .btn {
        max-width: 120px !important;
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }
    
    .container {
        padding: 0 12px !important;
    }
}

/* Image and media optimizations */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.casino-logo {
    object-fit: contain;
}

.payment-method img {
    object-fit: contain;
}

/* Lazy loading optimization */
img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

.casino-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .casino-card:hover {
        transform: none !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
    
    /* Touch feedback */
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .casino-card:active {
        opacity: 0.9;
        transition: opacity 0.1s ease;
    }
}

/* Mobile UX improvements */
@media (max-width: 768px) {
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Sticky header on mobile */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    /* Improved mobile navigation */
    .nav-menu.active {
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
    
    /* Mobile-friendly table of contents */
    .toc-link:active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Swipe indicators for casino cards */
    .casino-showcase::after {
        content: "Swipe to see more →";
        display: block;
        text-align: center;
        color: #666;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    /* Mobile-specific button styling */
    .btn-primary {
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    /* Better mobile spacing for sections */
    .section + .section {
        margin-top: -1rem;
    }
    
    /* Mobile-optimized payment methods */
    .payment-methods {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .payment-methods::-webkit-scrollbar {
        display: none;
    }
    
    /* Mobile casino card animations */
    .casino-card {
        transition: all 0.2s ease;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Mobile text optimization */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none !important;
    }
    
    .mobile-text {
        display: block !important;
    }
    
    /* Optimized mobile text styling */
    .mobile-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        color: #333 !important;
    }
    
    .bonus .mobile-text {
        font-weight: 600 !important;
        color: #ffffff !important;
        background: #012169 !important;
        padding: 0.5rem 0.8rem !important;
        border-radius: 6px !important;
        display: inline-block !important;
    }
    
    .highlights .mobile-text {
        font-style: italic !important;
        color: #666 !important;
    }
    
    /* Better spacing for mobile descriptions */
    .casino-details .mobile-text {
        margin-bottom: 0.75rem !important;
    }
    
    /* Compact bonus section for mobile */
    .bonus-section {
        margin-bottom: 1rem !important;
    }
    
    .deposit-info {
        margin-top: 0.5rem !important;
    }
}

/* Header and Navigation Styles */
.header {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

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

.header-logo {
    height: 40px;
    width: auto;
}

/* Hide navigation and hamburger on desktop */
.main-nav {
    display: none;
}

.nav-menu {
    display: none;
}

.hamburger {
    display: none;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between !important;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #012169, #1e3a8a);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        list-style: none;
        margin: 0;
        padding-top: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #dc2626;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .header {
        padding: 0.8rem 0 !important;
    }
    
    .header-logo {
        height: 35px !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}