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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(135deg, #8c27b8 0%, #d76cff 25%, #c532ff 50%, #a000ff 75%, #9333ea 100%);
    background-attachment: fixed;
    color: white;
    min-height: 200vh;
    overflow-x: hidden;
}

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

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 256px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid rgba(107, 114, 128, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.collapse-btn {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
}

.nav-menu {
    list-style: none;
    padding: 8px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 1px;
}

.mobile-menu-btn:hover span {
    background: #c532ff;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* Add mobile-specific styles for menu animation */
@media (max-width: 768px) {
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
}

.dropdown-icon {
    transition: transform 0.2s;
}

.dropdown-menu {
    list-style: none;
    background: rgba(31, 41, 55, 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-menu.active {
    max-height: 200px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 32px;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(55, 65, 81, 1);
    color: white;
}

/* Color classes for nav items */
.orange-text { color: #FB923C !important; }
.yellow-text { color: #FBBF24 !important; }
.pink-text { color: #F472B6 !important; }
.green-text { color: #4ADE80 !important; }
.blue-text { color: #60A5FA !important; }

/* Main Content */
.main-content {
    margin-left: 256px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 128px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../assets/scurrows-portrait.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(219, 172, 255, 0.8), rgba(178, 85, 255, 0.7), rgba(185, 98, 250, 0.6));
}

.hero-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(140, 39, 184, 0.8), transparent);
}

.hero-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 256px;
    background: linear-gradient(to top, rgba(88, 28, 135, 0.8), rgba(124, 58, 237, 0.4), transparent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 6rem;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Casino Section */
.casino-section {
    padding: 64px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 32px;
}

.section-note {
    color: #9CA3AF;
    margin-bottom: 32px;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1024px;
    margin: 0 auto;
}

.casino-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-card:hover {
    background: rgba(31, 41, 55, 0.6);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.casino-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    background-color: #420c57;
}

.casino-details h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.casino-offers {
    display: flex;
    gap: 32px;
    margin-bottom: 8px;
}

.offer-item {
    text-align: center;
}

.offer-value {
    font-size: 20px;
    font-weight: bold;
    color: #1aed44 !important;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.offer-label {
    font-size: 12px;
    color: #E5E7EB;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.casino-features {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.casino-features .feature {
    color: #F3F4F6;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-item {
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-item::before {
    content: "✓";
    color: #10B981;
}

.claim-btn {
    background: white;
    color: #1F2937;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.claim-btn:hover {
    transform: scale(1.05);
}

/* Quick Links Section */
.quick-links-section {
    padding: 64px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link-card {
    height: 150px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.bonuses-card {
    background: linear-gradient(135deg, #DC2626, #991B1B);
}

.bonus-hunt-card {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.raffles-card {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

/* News Section */
.news-section {
    padding: 64px 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.view-all-btn {
    background: rgba(55, 65, 81, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: rgba(55, 65, 81, 1);
}

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

.news-card {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.news-card:visited,
.news-card:hover,
.news-card:focus,
.news-card:active {
    text-decoration: none !important;
}

.news-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
    color: inherit;
}

.news-link:visited,
.news-link:hover,
.news-link:focus,
.news-link:active {
    text-decoration: none !important;
    color: inherit;
}

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

.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-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(17, 24, 39, 0.8) 70%, rgba(17, 24, 39, 0.95) 100%);
}

.news-content {
    padding: 24px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #82ff5c !important;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.news-excerpt {
    font-size: 14px;
    color: #ffffff!important;
    margin-bottom: 16px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9CA3AF;
    margin-top: auto;
}

.news-date {
    background: rgba(168, 85, 247, 0.2);
    color: #C084FC;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.news-views {
    color: #9CA3AF;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(73, 27, 80, 0.98), rgba(41, 22, 50, 0.95))!important;
    backdrop-filter: blur(12px);
    padding: 64px 0 32px;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-article {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
}

.footer-article-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: background 0.2s;
}

.footer-article-link:hover {
    background: rgba(139,92,246,0.08);
}


.footer-article:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}
.footer-article h4,
.footer-article span {
    text-decoration: none;
}

.footer-article img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-article h4 {
    font-size: 13px;
    color: white;
    margin-bottom: 4px;
}

.footer-article span {
    font-size: 11px;
    color: #9CA3AF;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-column h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .footer-column ul li a {
        font-size: 20px;
        padding: 8px 0;
    }

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

    .footer-article img {
        width: 100px;
        height: auto;
    }

    .footer-article h4 {
        font-size: 24px;
    }

    .footer-article span {
        font-size: 13px;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 24px;
    }

    .social-link {
        flex-direction: column;
        align-items: center;
    }

    .social-link img {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .social-link strong {
        font-size: 16px;
    }

    .social-link span {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-logos img {
        width: 80px;
        height: 40px;
    }

    .footer {
        padding: 48px 16px 32px;
    }
}


/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(55, 65, 81, 0.8);
    transform: translateY(-2px);
}

.social-link span {
    font-size: 20px;
}

.social-link strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.social-link span:last-child {
    font-size: 12px;
    color: #D1D5DB;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(75, 85, 99, 1);
}

.footer-logos {
    display: flex;
    gap: 16px;
}

.footer-logos img {
    height: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-copyright {
    font-size: 14px;
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}








.main-content-section {
    padding: 60px 0;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-card {
    max-width: 960px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
}
.faq-card {
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #ffffff;
}

.content-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #e0e0e0;
}

.first-paragraph {
    font-size: 17px;
    color: #ffffff;
}

.feature-highlight {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #8f5bff;
    padding: 16px 20px;
    margin: 20px 0;
}


.content-card a {
    color: #8f5bff;
    text-decoration: underline;
}



.top-navbar {
    display: none;
}

@media (max-width: 768px) {
    .top-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #1b1c2e;
        color: white;
        padding: 12px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .left-section {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu-icon {
        font-size: 20px;
        color: #aaa;
    }

    .live-badge {
        background-color: red;
        color: white;
        font-size: 12px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 4px;
        border: 1px solid #ff8c8c;
    }

    .logo {
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        background-color: #111;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1100;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .mobile-overlay.active {
        display: block;
    }
}
.menu-button {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #ff8c8c;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu-button:hover {
    background-color: #cc0000;
}




.faq-section {
    padding: 80px 0;
}

.faq-section .container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    max-width: 960px;
    margin: 60px auto;
}


.faq-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
}

.faq-item {
    background-color: rgba(15, 15, 40, 0.85);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #dcdcdc;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 12px 24px 20px;
}

.faq-answer p,
.faq-answer ul {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    margin-top: 10px;
    list-style: disc;
    padding-left: 20px;
}


.casino-logo-img {
    max-width: 100px;
    max-height: 120px;
    object-fit: contain;
}



.casino-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.casino-card-link:hover {
    transform: scale(1.01);
}


.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.logo-link .logo-section {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .casino-card {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .casino-logo {
        margin-right: 16px;
        flex-shrink: 0;
    }
    .casino-content {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .casino-title {
        width: 100%;
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0 0 8px 0;
    }
}
.quick-links-grid a {
    text-decoration: none;
    color: inherit;
}


@media (max-width: 600px) {
    .casino-card {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        padding: 16px 8px !important;
        border-radius: 18px !important;
        box-sizing: border-box;
        margin: 0 auto 16px auto;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }
    .casino-info {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }
    .casino-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    .casino-logo-img {
        max-width: 70px;
        max-height: 60px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .casino-details,
    .casino-offers,
    .casino-features {
        width: 100%;
        text-align: center;
    }
    .claim-btn {
        width: 100%;
        max-width: 340px;
        margin: 14px auto 0 auto;
        padding: 15px 0;
        font-size: 16px;
        border-radius: 18px;
        box-sizing: border-box;
        text-align: center;
        word-break: break-word;
        display: block;
    }
}

.footer-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-links-section {
    display: flex;
    gap: 80px;
}

.footer-links-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 8px;
}

.footer-links-column ul li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: #A855F7;
}

/* Mobile Portrait and Footer */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .portrait-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-section {
        gap: 40px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .portrait-image {
        width: 150px;
        height: 150px;
    }
}

/* Updated Footer Grid Structure */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li span {
    color: #9CA3AF;
    font-size: 12px;
    margin-left: 8px;
}

.footer-article {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: background 0.2s;
}

.footer-article:hover {
    background: rgba(139,92,246,0.08);
}

.footer-article img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-article h4 {
    font-size: 13px;
    color: white;
    margin-bottom: 4px;
    line-height: 1.3;
}

.footer-article span {
    font-size: 11px;
    color: #9CA3AF;
}

/* Mobile Footer Grid */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .footer-column ul li a {
        font-size: 20px;
        padding: 8px 0;
    }
    
    .footer-article {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-article img {
        width: 100%;
        height: 120px;
    }
    
    .footer-article h4 {
        font-size: 18px;
    }
    
    .footer-article span {
        font-size: 16px;
    }
}

/* Casino CTA Button Styles */
.casino-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.cta-button {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #047857, #065f46);
    border-color: rgba(255, 255, 255, 0.7);
}

.casino-card:hover .cta-button {
    transform: translateY(-2px) scale(1.05);
}

/* Ensure casino card layout includes CTA */
.casino-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.2);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

/* Mobile responsiveness for CTA */
@media (max-width: 768px) {
    .casino-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .casino-cta {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}

/* Modern Navigation Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(135deg, rgba(73, 27, 80, 0.98), rgba(41, 22, 50, 0.95));
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(71, 85, 105, 0.4);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-shadow: 4px 0 24px rgba(30, 41, 59, 0.4);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.live-badge {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    color: #eaeaea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}

.nav-item:hover {
    background: rgba(168, 85, 247, 0.1);
    color: white;
    transform: translateX(4px);
}

.nav-item.active {
    background: rgba(168, 85, 247, 0.15);
    color: #A855F7;
    border-right: 3px solid #A855F7;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 8px;
    margin: 4px 20px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease;
}

.nav-dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 8px 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(168, 85, 247, 0.15);
    color: white;
    transform: translateX(8px);
}

/* Mobile Navigation */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        z-index: 1100;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .nav-item {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .dropdown-menu a {
        padding: 16px 24px;
        font-size: 15px;
    }
}

/* Remove old color classes */
.orange-text, .yellow-text, .pink-text, .green-text, .blue-text {
    color: inherit !important;
}

/* Modern Header and Menu Button */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
}

.left-section {
    display: flex;
    align-items: center;
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    padding: 0;
}

.menu-button:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #A855F7;
    transform: scale(1.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #A855F7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-button:hover .hamburger-line {
    background: #C084FC;
}

/* Animated hamburger to X when menu is active */
.sidebar.active ~ .main-content .menu-button .hamburger-line:nth-child(1),
body.sidebar-open .menu-button .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar.active ~ .main-content .menu-button .hamburger-line:nth-child(2),
body.sidebar-open .menu-button .hamburger-line:nth-child(2) {
    opacity: 0;
}

.sidebar.active ~ .main-content .menu-button .hamburger-line:nth-child(3),
body.sidebar-open .menu-button .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.top-navbar .logo {
    font-size: 20px;
    font-weight: 900;
    color: white;
}

/* Ensure proper mobile menu positioning */
@media (max-width: 768px) {
    .top-navbar {
        display: flex;
    }
    
    .menu-button {
        display: flex;
    }
    
    .sidebar {
        width: 100%;
        max-width: 320px;
    }
}

/* Beautiful Glassmorphism Cards */
.casino-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* High Contrast Emerald-White Buttons */
.claim-btn {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #047857, #065f46);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.claim-btn:hover::before {
    opacity: 1;
}

.claim-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

.claim-btn span {
    position: relative;
    z-index: 1;
}

/* Clean Feature Colors */
.feature-item::before {
    content: "✓";
    color: #10b981;
}

.offer-value {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    display: block;
}

/* Beautiful Quick Links */
.quick-link-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Beautiful News Cards */
.news-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8c27b8, #c532ff, #d76cff, #a000ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-card h3 {
    color: #38bdf8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.news-card p {
    color: #a5f3fc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.news-meta {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Beautiful Glassmorphism Header */
.top-navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.menu-button:hover::before {
    left: 100%;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.menu-button:hover .hamburger-line {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Clean Footer */
.footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.9));
    border-top: 1px solid rgba(71, 85, 105, 0.4);
    backdrop-filter: blur(15px);
}

.footer h4 {
    color: #fbbf24;
}

.footer a:hover {
    color: #fbbf24;
}

/* Section Headers */
.section h2 {
    color: #fbbf24;
}

/* Clean Color Classes */
.orange-text { color: #fb923c !important; }
.yellow-text { color: #fbbf24 !important; }
.pink-text { color: #f472b6 !important; }
.green-text { color: #4ade80 !important; }
.blue-text { color: #fbbf24 !important; }


@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr !important;  /* Только одна колонка */
        gap: 24px;
    }
    h2, .faq-title {
        text-align: center !important;
    }
    .content-card.faq-card,
    .faq-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 1024px) {
    .main-content {
        margin-left: 0 !important;
    }
}


@media (max-width: 768px) {
    .casino-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px;
        text-align: center !important;
        padding: 16px 12px;
        box-sizing: border-box;
        width: 100%;
    }

    .casino-card-link { display: block; }

    .casino-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }

    .casino-logo {
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        margin: 0 0 10px 0 !important;
    }

    .casino-logo-img,
    .casino-name-fallback {
        display: block;
        max-width: 80px;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .casino-details,
    .casino-offers,
    .casino-features {
        width: 100%;
        text-align: center !important;
    }

    .casino-offers {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .casino-cta { width: 100%; }
    .cta-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 12px auto 0;
}

.quick-links-section .section-title,
.news-section .section-title,
.main-content-section .section-title,
.faq-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.main-content-section .content-card,
.faq-section .content-card {
    margin-top: 0;
}

.content-card .content-title {
    text-align: left;
}

.faq-title {
    text-align: left;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .casino-features {
        text-align: center;
    }

    .casino-features .feature {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Bigger casino logos */
.casino-logo {
    width: 170px;
    min-width: 170px;
    height: 90px;
}

.casino-logo-img {
    max-width: 130px;
    max-height: 70px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .casino-logo {
        width: 210px;
        min-width: 210px;
        height: 105px;
        margin: 0 auto 16px;
    }

    .casino-logo-img {
        max-width: 150px;
        max-height: 82px;
    }
}