* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #3b82f6;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span {
    color: #10b981;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #3b82f6;
}

.flag img {
    width: 32px;
    height: 24px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)),
                url('/placeholder.svg?height=400&width=1200') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters */
.filters {
    background: rgba(30, 41, 59, 0.9);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group,
.sort-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label,
.sort-label {
    color: #e2e8f0;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.sort-select {
    background: rgba(30, 41, 59, 0.9);
    color: #e2e8f0;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

/* Casino Listings */
.casino-listings {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
}


.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.casino-rank {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.casino-badge.top-choice {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
}

.casino-badge.top-lottery {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.casino-badge.player-favorite {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.casino-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.casino-logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
}

.casino-info {
    flex: 1;
}

.casino-name {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
}

.rating-text {
    color: #cbd5e1;
    font-weight: 600;
}

.casino-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.feature {
    color: #10b981;
    font-size: 0.9rem;
}

.casino-offer {
    text-align: center;
    min-width: 250px;
}

.bonus-text {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.play-btn {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    color: #cbd5e1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .casino-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}
/* Reviews Page Specific Styles */
.page-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)),
                url('/placeholder.svg?height=300&width=1200') center/cover;
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.reviews-section {
    padding: 3rem 0;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.review-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.casino-logo-large img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
}

.review-meta h2 {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-large .stars {
    color: #f59e0b;
    font-size: 1.5rem;
}

.rating-score {
    color: #cbd5e1;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.review-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.review-badge.excellent {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.review-badge.outstanding {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
}

.review-content {
    display: grid;
    gap: 2rem;
}

.review-summary h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.review-summary p {
    color: #cbd5e1;
    line-height: 1.6;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros, .cons {
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
}

.pros h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.review-details {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item h5 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item p {
    color: #e2e8f0;
    font-weight: 600;
}

.review-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.read-more-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .review-actions {
        flex-direction: column;
    }
}

/* Bonuses Page Specific Styles */
.bonus-categories {
    background: rgba(30, 41, 59, 0.9);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.bonus-listings {
    padding: 3rem 0;
}

.bonus-category {
    display: none;
}

.bonus-category.active {
    display: block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.bonus-card.featured {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(245, 158, 11, 0.1));
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-logo {
    width: 90px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    padding: 5px;
}

.casino-info h3 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.rating {
    color: #f59e0b;
    font-size: 0.9rem;
}

.featured-badge,
.no-deposit-badge,
.spins-badge,
.reload-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.featured-badge {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
}

.no-deposit-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.spins-badge {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.reload-badge {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.bonus-offer {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.bonus-extras {
    color: #10b981;
    font-weight: 600;
}

.bonus-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    color: #cbd5e1;
    font-size: 0.9rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.bonus-actions {
    display: flex;
    gap: 1rem;
}

.claim-btn {
    flex: 1;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.terms-btn {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.terms-btn:hover {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.5);
}

.bonus-guide {
    background: rgba(15, 23, 42, 0.5);
    padding: 4rem 0;
    margin-top: 3rem;
}

.bonus-guide h2 {
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.step p {
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-actions {
        flex-direction: column;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* Slots Page Specific Styles */
.slot-categories {
    background: rgba(30, 41, 59, 0.9);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-slots {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    color: #e2e8f0;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.slot-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.slot-card.featured {
    border-color: rgba(245, 158, 11, 0.5);
}

.slot-image {
    position: relative;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image img {
    transform: scale(1.05);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-demo,
.play-real {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.play-demo {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.play-demo:hover {
    background: #3b82f6;
    color: white;
}

.play-real {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
}

.play-real:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.slot-info {
    padding: 1.5rem;
}

.slot-info h3 {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.slot-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.provider {
    color: #94a3b8;
}

.rtp {
    color: #10b981;
    font-weight: 600;
}

.slot-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.feature-tag.jackpot {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
}

.feature-tag.megaways {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.feature-tag.classic {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.feature-tag.new {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.feature-tag:not(.jackpot):not(.megaways):not(.classic):not(.new) {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.jackpot-amount,
.max-win {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.1rem;
}

.slot-providers {
    background: rgba(15, 23, 42, 0.5);
    padding: 4rem 0;
    margin-top: 3rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.provider-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.provider-card img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.provider-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.provider-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.provider-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #94a3b8;
}

.slot-tips {
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-overlay {
        opacity: 1;
        background: rgba(15, 23, 42, 0.6);
    }
    
    .play-demo,
    .play-real {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Guides Page Specific Styles */
.guide-categories {
    padding: 3rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.guides-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.guides-section:last-of-type {
    border-bottom: none;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.guide-image {
    position: relative;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 2rem;
}

.guide-content h3 {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guide-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.read-time {
    color: #94a3b8;
}

.difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    font-size: 0.8rem;
}

.difficulty:contains("Beginner") {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.difficulty:contains("Intermediate") {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.difficulty:contains("Advanced") {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.read-more {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.responsible-gaming {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.responsible-text h3 {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.responsible-text p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.responsible-list {
    list-style: none;
    padding: 0;
}

.responsible-list li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.responsible-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.help-resources h3 {
    color: #ef4444;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-link {
    display: block;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-link:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.help-link img {
    width: 100%;
    height: 3rem;
    object-fit: contain;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}
/* Legal Pages Specific Styles */
.last-updated {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.legal-content {
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.table-of-contents {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 120px;
}

.table-of-contents h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.table-of-contents a:hover {
    color: #3b82f6;
}

.legal-text {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.legal-text section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.legal-text section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-text h2 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    color: #10b981;
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.legal-text p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text ul {
    color: #cbd5e1;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #fca5a5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
    }
    
    .legal-text {
        padding: 2rem;
    }
}

/* Responsible Gambling Page Specific Styles */
.responsible-hero {
    background: linear-gradient(rgba(239, 68, 68, 0.8), rgba(185, 28, 28, 0.8)),
                url('/placeholder.svg?height=300&width=1200') center/cover;
}

.hero-warning {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 25px;
    padding: 1rem 2rem;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fca5a5;
    font-weight: bold;
}

.warning-icon {
    font-size: 1.5rem;
}

.quick-help {
    background: rgba(239, 68, 68, 0.1);
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
    padding: 2rem 0;
}

.help-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.help-content h2 {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.help-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.help-actions {
    display: flex;
    gap: 1rem;
}

.help-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.help-btn.emergency {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    animation: pulse 2s infinite;
}

.help-btn:not(.emergency) {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.guidelines-section {
    padding: 4rem 0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guideline-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.guideline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guideline-card h3 {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guideline-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guideline-card ul {
    list-style: none;
    padding: 0;
}

.guideline-card li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.guideline-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.warning-signs {
    background: rgba(15, 23, 42, 0.8);
    padding: 4rem 0;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.warning-content {
    text-align: center;
    margin-bottom: 3rem;
}

.warning-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.signs-category {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.signs-category h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.signs-category ul {
    list-style: none;
    padding: 0;
}

.signs-category li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.signs-category li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.self-assessment {
    padding: 4rem 0;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-intro p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.assessment-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.question {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.question:last-of-type {
    border-bottom: none;
}

.question p {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.answer-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.answer-options label {
    color: #cbd5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.answer-options input[type="radio"] {
    accent-color: #3b82f6;
}

.assessment-btn {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.assessment-result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    display: none;
}

.assessment-result.low-risk {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.assessment-result.medium-risk {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.assessment-result.high-risk {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.help-resources {
    background: rgba(15, 23, 42, 0.5);
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.resource-card img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.resource-contact a {
    color: #3b82f6;
    text-decoration: none;
}

.resource-contact a:hover {
    text-decoration: underline;
}

.gambling-tools {
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.tool-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tool-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.tool-card li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tool-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.tool-link {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .help-banner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .help-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .guidelines-grid,
    .signs-grid,
    .resources-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .answer-options {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 3rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #3b82f6;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #3b82f6;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
    min-width: 50px;
}

.method-details h3 {
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.method-details p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.method-details a {
    color: #3b82f6;
    text-decoration: none;
}

.method-details a:hover {
    text-decoration: underline;
}

.faq-section {
    background: rgba(15, 23, 42, 0.5);
    padding: 4rem 0;
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.faq-item h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: #10b981;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: #ef4444;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 80px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    padding: 2rem 0;
    text-align: center;
}

.mobile-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .page-hero {
        padding: 120px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .filter-group,
    .sort-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .casino-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .casino-offer {
        min-width: auto;
    }
    
    .casino-rank {
        position: static;
        margin: 0 auto 1rem;
    }
    
    .casino-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-logo img {
        width: 100px;
        height: 65px;
    }
    
    .casino-name {
        font-size: 1.3rem;
    }
    
    .play-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Enhanced Mobile Responsiveness for All Pages */
@media (max-width: 768px) {
    /* Reviews Page Mobile */
    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-logo-large img {
        width: 120px;
        height: 80px;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Bonuses Page Mobile */
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Slots Page Mobile */
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-overlay {
        opacity: 1;
        background: rgba(15, 23, 42, 0.6);
    }
    
    .play-demo,
    .play-real {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Guides Page Mobile */
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Legal Pages Mobile */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
        padding: 1.5rem;
    }
    
    .legal-text {
        padding: 2rem 1.5rem;
    }
    
    /* Responsible Gambling Mobile */
    .help-banner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .help-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .help-btn {
        width: 100%;
        text-align: center;
    }
    
    .guidelines-grid,
    .signs-grid,
    .resources-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .answer-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .assessment-form {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Page Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .method-icon {
        align-self: center;
    }
}

/* Additional Mobile Utilities */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-show {
        display: block !important;
    }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    button,
    .btn,
    .play-btn,
    .claim-btn,
    .filter-btn,
    .tab-btn,
    .help-btn,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        touch-action: manipulation;
    }
}


.gambling-section {
    background-color: #111;
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
    border-radius: 1rem;
    max-width: 1000px;
    margin: 3rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gambling-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.gambling-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gambling-section a {
    color: #ffcc00;
    text-decoration: underline;
}

.gambling-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gambling-logos img {
    width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.gambling-logos img:hover {
    transform: scale(1.05);
}
