
/* 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);
    border-bottom: 2px solid #ff0000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 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;
}

.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-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
        /* Maintain white background on tablet */
        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 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .poker-animation-container {
        height: 300px;
        border-radius: 10px;
        margin-bottom: 30px;
    }
    
    /* Tablet optimizations for poker animation */
    .card {
        width: 50px;
        height: 70px;
        font-size: 14px;
    }
    
    .chip {
        width: 40px;
        height: 40px;
    }
    
    .bonus-grid,
    .education-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured-news {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .casino-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .bonus-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-controls {
        justify-content: center;
    }
}

@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;
}
