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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles - Fixed Layout Issues */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    height: 70px;
    position: relative;
}

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

.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    /* Enhanced visibility against black background */
    filter: brightness(1.4) contrast(1.3);
    /* Solid white background for maximum contrast */
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-link:hover .logo-img {
    filter: brightness(1.5) contrast(1.4) drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Navigation Styles - Simplified */
.main-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    background-color: #ff0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Header CTA */
.header-cta {
    margin-left: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

/* Hero Section - Video Background */
.hero {
    position: relative;
    padding: 150px 0 120px;
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000; /* Fallback background */
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

/* Video overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Video fallback for unsupported browsers */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    z-index: 1;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .hero-video {
        object-position: center center;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 0 80px;
    }
    
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

/* Video loading state */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-video-container.loaded::before {
    opacity: 0;
}

/* Hero Text - Updated for Video Background */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(255, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 3;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(255, 0, 0, 0.3); }
    100% { text-shadow: 0 0 50px rgba(255, 0, 0, 0.6); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.btn-bonus,
.btn-casino,
.btn-education {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 12px 25px;
    font-size: 14px;
}

.btn-bonus:hover,
.btn-casino:hover,
.btn-education:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Featured Bonuses Section */
.featured-bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.bonus-card.featured {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bonus-card .bonus-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.bonus-card .bonus-logo {
    text-align: center;
    margin-bottom: 12px;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bonus-description {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bonus-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
}

.bonus-code {
    font-family: 'Courier New', monospace;
    background: #000000;
    color: #ff0000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.bonus-rating {
    color: #ffd700;
    font-weight: 600;
}

/* Best Casinos Section */
.best-casinos {
    padding: 80px 0;
    background: #000000;
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: 60px 120px 1fr auto auto;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.casino-item:hover::before {
    left: 100%;
}

.casino-item:hover {
    border-color: #ff0000;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.casino-rank {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

.casino-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.casino-info p {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.casino-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.casino-rating {
    text-align: center;
}

.rating-stars {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 5px;
}

.rating-number {
    color: #cccccc;
    font-size: 13px;
    font-weight: 600;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.education-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.education-card:hover::before {
    left: 100%;
}

.education-card:hover {
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.education-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.education-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.education-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.education-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Basic Education Lists */
.basic-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.basic-list li {
    position: relative;
    padding-left: 20px;
    margin: 6px 0;
    color: #cccccc;
    font-size: 14px;
}

.basic-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

/* News Section Highlights */
.news-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.highlight {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #000000;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.news-card.featured-news {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.news-card:hover::before {
    left: 100%;
}

.news-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.featured-news .news-image {
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.news-category {
    background: #ff0000;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.news-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.news-meta {
    display: flex;
    gap: 15px;
    color: #999999;
    font-size: 12px;
}

/* All Bonuses Section */
.all-bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-controls {
    display: flex;
    gap: 15px;
}

.filter-select {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #ff0000;
    outline: none;
}

/* Bonus List */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    border-color: #ff0000;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    transform: translateX(5px);
}

.bonus-item-logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}

.bonus-item-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.bonus-item-info p {
    color: #cccccc;
    font-size: 14px;
}

.bonus-item-code {
    background: #000000;
    color: #ff0000;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 12px;
}

.bonus-item-rating {
    color: #ffd700;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333333;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #ff0000;
    background: #ff0000;
}

.pagination-info {
    color: #cccccc;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #ff0000;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

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

/* Footer Logo and About Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.award-badge {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

/* Footer Section Headers */
.footer-section h4 {
    color: #ff0000;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff0000;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #666666;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    color: #ff0000;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    color: #ff0000;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.contact-item a:hover {
    color: #ff0000;
}

.contact-item span:not(.contact-label) {
    color: #cccccc;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #333333;
    padding-top: 40px;
}

.footer-disclaimer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #ff0000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.footer-disclaimer p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: #ff0000;
    font-weight: 700;
}

.footer-disclaimer a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: #ffffff;
}

.footer-licensing {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-licensing p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.license-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.license-badge {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.license-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-copyright {
    text-align: center;
    color: #888888;
    font-size: 13px;
    line-height: 1.6;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.footer-copyright a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #ffffff;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-awards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .license-logos {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .license-badge {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-disclaimer {
        padding: 20px;
    }
    
    .footer-licensing {
        padding: 15px;
    }
    
    .award-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

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

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.mobile-nav-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-menu .nav-link:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: scale(1.05);
}

.mobile-nav-menu .cta-button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Responsive Design - Improved Mobile First Approach */
@media (max-width: 768px) {
    /* Header adjustments for tablet */
    .nav-wrapper {
        padding: 15px 0;
        height: 70px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
        background: #ffffff;
        padding: 6px 10px;
        border-radius: 6px;
        filter: brightness(1.4) contrast(1.3);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    
    .header-cta {
        margin-left: 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .bonus-grid,
    .education-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-card.featured-news {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .casino-item,
    .bonus-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .filter-controls {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* iPhone 15 Pro Max and Similar Large Phones */
@media (max-width: 430px) {
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 380px;
    }
    
    .btn {
        max-width: 320px;
    }
}

/* Mobile First - iPhone and Small Screens */
@media (max-width: 480px) {
    /* Mobile navigation */
    .mobile-nav-toggle {
        display: flex;
        order: 3;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav-wrapper {
        padding: 12px 0;
        height: 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 130px;
        background: #ffffff;
        padding: 5px 8px;
        border-radius: 5px;
        filter: brightness(1.4) contrast(1.3);
        box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Card optimizations for mobile */
    .bonus-card,
    .education-card,
    .news-card {
        margin-bottom: 20px;
    }
    
    .bonus-card h3,
    .education-card h3,
    .news-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .bonus-card p,
    .education-card p,
    .news-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Touch targets */
    .btn,
    .nav-link,
    .cta-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Featured bonus optimization */
    .bonus-card.featured {
        border-width: 3px;
    }
    
    .bonus-logo img {
        max-height: 50px;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 130px;
        /* Maintain white background on mobile */
        background: #ffffff;
        padding: 5px 8px;
        border-radius: 5px;
        filter: brightness(1.4) contrast(1.3);
        box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .poker-animation-container {
        height: 250px;
        border-radius: 8px;
        margin-bottom: 25px;
    }
    
    /* Mobile optimizations for poker animation */
    .card {
        width: 40px;
        height: 56px;
        font-size: 12px;
    }
    
    .chip {
        width: 35px;
        height: 35px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    

}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect Fix */
.parallax-container {
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* New Education Section Styles */
.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    text-align: center;
    margin: 20px 0 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Update education button to work as link */
.btn-education {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff !important;
    padding: 12px 25px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-education:hover {
    text-decoration: none;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Education Footer Styling */
.education-footer {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.education-footer h3 {
    color: #ffffff;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.education-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}

.benefit h4 {
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit p {
    color: #e5e5e5;
    line-height: 1.6;
    margin: 0;
}

.btn-news {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 15px;
}

.btn-news:hover {
    background: linear-gradient(135deg, #ff3333, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* View More Materials Button */
.news-view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.view-more-btn svg {
    transition: transform 0.3s ease;
}

.view-more-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive Styles for View More Button */
@media (max-width: 768px) {
    .news-view-more {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .view-more-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news-view-more {
        margin-top: 30px;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .view-more-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 10px;
    }
    
    .view-more-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* News Archive Page Styles */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Archive Filters */
.archive-filters {
    margin: 50px 0 40px;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* News Archive Grid */
.news-archive-section {
    padding: 40px 0 80px;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Archive Navigation */
.archive-navigation {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.back-home-btn svg {
    transition: transform 0.3s ease;
}

.back-home-btn:hover svg {
    transform: translateX(-4px);
}

/* Mobile Responsive for Archive Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .filter-buttons {
        gap: 10px;
        padding: 0 20px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .news-archive-grid {
        padding: 0 10px;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 5px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .archive-navigation {
        padding: 30px 20px;
    }
}

/* New Page Styles */
.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid #333333;
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 14px;
    color: #999999;
}

.breadcrumb a {
    color: #ff0000;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

/* About Page Styles */
.about-content,
.contact-content,
.responsible-gambling-content {
    padding: 60px 0;
    background: #000000;
}

.about-wrapper,
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.content-block h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.content-block h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-block h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-block p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    position: relative;
    padding-left: 25px;
    margin: 10px 0;
    color: #cccccc;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

.disclaimer-block {
    border-color: #ff0000;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.disclaimer-block strong {
    color: #ff0000;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-details {
    margin-top: 20px;
}

.contact-item-large {
    margin-bottom: 25px;
}

.contact-item-large h3 {
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-item-large a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-item-large a:hover {
    color: #ff0000;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00aa00;
    color: #00ff00;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    color: #ff0000;
}

/* Responsible Gambling Page Styles */
.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.org-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.org-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.org-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.org-card p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-help {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.warning-block {
    border-color: #ff6600;
    background: linear-gradient(135deg, #1a0800 0%, #0a0a0a 100%);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.warning-block strong {
    color: #ff6600;
}

.warning-signs {
    margin-top: 20px;
}

.warning-signs h4 {
    color: #ff6600;
    margin-bottom: 15px;
}

.warning-signs ul {
    list-style: none;
    padding: 0;
}

.warning-signs li {
    position: relative;
    padding-left: 25px;
    margin: 8px 0;
    color: #cccccc;
}

.warning-signs li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-item {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.tip-item h4 {
    color: #ff0000;
    font-size: 1rem;
    margin-bottom: 8px;
}

.tip-item p {
    color: #cccccc;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
}

/* ===== SURGICAL MERGE: ADDED CSS FILES ===== */


/* signup_modal_styles.css - append to end of your main stylesheet */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display:flex; }
.modal-content {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 28px;
  max-width: 560px;
  width: 94%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}
.modal-header { text-align:center; margin-bottom:16px; }
.modal-title { color:#fff; font-size:1.6rem; margin:0 0 6px; }
.modal-subtitle { color:#bfbfbf; margin:0; font-size:1rem; }
.close-modal {
  position:absolute; right:18px; top:12px; background:none; border:none; font-size:26px; color:#fff; cursor:pointer;
}
@media (max-width:768px){ .modal-content{ padding:20px; } }


/* AMERICAS CARDROOM BANNER STYLES */
.casino-banner-full { text-align:center; margin-bottom:20px; }
.casino-banner-full img { max-width:100%; height:auto; display:block; margin:0 auto; }

/* Americas Cardroom Custom Card */
.poker-room-card.acr-room {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin-bottom: 30px;
}
.acr-banner img { max-width:100%; height:auto; border-radius:8px; }
.acr-title { font-size:1.5rem; color:#fff; margin:16px 0 8px; }
.acr-subtitle { font-size:1rem; color:#ccc; margin-bottom:14px; }
.acr-tags { margin-bottom:14px; }
.acr-tags .tag {
  background:#b22222;
  color:#fff;
  padding:4px 10px;
  border-radius:5px;
  margin:0 4px;
  font-size:0.85rem;
}
.acr-footer { display:flex; justify-content:center; align-items:center; margin-top:10px; gap: 20px; }
.acr-rating { color:#ffcc00; font-weight:bold; font-size:1rem; }
.acr-footer .btn {
  background: linear-gradient(135deg, #ff4444, #cc3333);
  color:#fff;
  padding:10px 20px;
  border-radius:50px;
  font-weight:700;
  text-transform:uppercase;
}


/* BONUSES SECTION STYLES - Add this CSS for the Featured Bonuses section */
.featured-bonuses {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}
.bonuses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.bonus-card:hover { transform: translateY(-10px); }
.bonus-logo img { width: 120px; height: 60px; object-fit: cover; border-radius:5px; margin-bottom:20px; }
.bonus-title { font-size:1.5rem; font-weight:700; color:#ffffff; margin-bottom:15px; }
.btn-bonus { background: linear-gradient(135deg, #ff4444, #cc3333); color:#fff; padding:15px 30px; border-radius:8px; font-weight:700; }


/* Dark Sign Up Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display:flex; }
.modal-content {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 28px;
  max-width: 560px;
  width: 94%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  position: relative;
}
.modal-header { text-align:center; margin-bottom:16px; }
.modal-title { color:#fff; font-size:1.6rem; margin:0; }
.modal-subtitle { color:#bfbfbf; margin:6px 0 0 0; font-size:1rem; }
.close-modal {
  position:absolute; right:18px; top:12px;
  background:none; border:none;
  font-size:26px; color:#fff;
  cursor:pointer;
}
.modal-body .btn-primary {
  background: linear-gradient(135deg, #ff4444, #cc3333);
  border:none; border-radius:50px;
  padding:12px 24px;
  font-weight:700; color:#fff;
  cursor:pointer;
}


/* ACR Card Layout Fix - Rating and Button Separate Rows */
.acr-rating-container {
  text-align: center;
  margin-top: 15px;
}
.acr-button-container {
  text-align: center;
  margin-top: 15px;
}
.acr-rating-container .acr-rating {
  color: #ffcc00;
  font-weight: bold;
  font-size: 1rem;
}
.acr-button-container .btn {
  background: linear-gradient(135deg, #ff4444, #cc3333);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

/* White-themed Sign Up Modal Refinement */
.modal-content {
  background: #ffffff !important;
  border-radius: 12px;
  padding: 28px;
  max-width: 560px;
  width: 94%;
  color: #000000 !important;
  text-align: center;
}

.modal-title {
  color: #000000 !important;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: #333333 !important;
  font-size: 1rem;
  margin-bottom: 18px;
}

.modal-body label {
  display: block;
  color: #000000 !important;
  margin-bottom: 6px;
  font-weight: 500;
}

.modal-body input[type="email"] {
  width: 80%;
  max-width: 360px;
  display: block;
  margin: 0 auto 16px auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

.modal-body .btn-primary {
  background: linear-gradient(135deg, #ff4444, #cc3333) !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

/* X Close Button (top-right inside modal) - Updated for white theme */
.close-modal {
  position: absolute !important;
  top: 12px !important;
  right: 16px !important;
  background: none !important;
  border: none !important;
  font-size: 24px !important;
  color: #000 !important;
  cursor: pointer !important;
}

/* Bonus Banner Styles */
.bonus-banner {
    width: 100%;
    max-width: 330px;
    height: auto;
    margin: 0 auto 12px auto;
    display: block;
    border-radius: 6px;
}

/* Room Banner Styles */
.room-banner {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 16px auto;
    display: block;
    border-radius: 6px;
}


/* Enhanced Mobile Modal Styles for Sign-Up Features */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 auto;
        padding: 24px 20px;
        border-radius: 16px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        position: relative;
    }
    
    .modal-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 24px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }
    
    .close-modal:hover {
        background: rgba(255,255,255,0.2);
    }
    
    /* Mobile form styles */
    .modal-content input[type="email"] {
        width: 100%;
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.05);
        color: #fff;
        margin-bottom: 16px;
    }
    
    .modal-content button[type="submit"] {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
        background: linear-gradient(135deg, #ff4444, #cc3333);
        color: #fff;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
    }
    
    .modal-content button[type="submit"]:hover {
        background: linear-gradient(135deg, #ff5555, #dd4444);
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
    }
    
    .close-modal {
        right: 12px;
        top: 12px;
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
}

/* Ensure modal is accessible on all screen sizes */
@media (max-height: 600px) {
    .modal-overlay {
        align-items: flex-start;
        padding-top: 10px;
    }
    
    .modal-content {
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-overlay {
        padding-top: 10px;
    }
    
    .modal-content {
        max-height: calc(100vh - 20px);
        padding: 20px 24px;
    }
    
    .modal-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .modal-subtitle {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
}
