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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a0d2e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Header Styles
   ============================================ */
.main-header {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0d2e 100%);
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.header-top-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-desktop {
    display: none;
}

.logo-mobile {
    width: 100%;
    text-align: center;
}

.logo-mobile img {
    margin: 0 auto;
}

.header-bottom-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    box-sizing: border-box;
}

.header-right {
    display: none;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.btn-login {
    background: transparent;
    color: #e0e0e0;
    border-color: #8a2be2;
}

.btn-login:hover {
    background: #8a2be2;
    color: #fff;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb3 100%);
    color: #fff;
    border-color: #8a2be2;
}

.btn-register:hover {
    background: linear-gradient(135deg, #9d3ef0 0%, #7a21c3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    margin-right: 15px;
}

.lang-link {
    display: inline-block;
    padding: 8px 12px;
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-link:hover {
    color: #fff;
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
}

.lang-link.active {
    color: #fff;
    background: #8a2be2;
    border-color: #8a2be2;
}

/* Burger Menu */
.burger-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
    box-sizing: border-box;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    display: none;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    margin-top: 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.main-nav.nav-open {
    display: flex;
}

.main-nav .nav-link {
    display: block;
    padding: 12px 15px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    text-align: center;
}

.main-nav .nav-link:hover {
    background: rgba(138, 43, 226, 0.2);
    color: #fff;
}

.main-nav .nav-link.active {
    background: rgba(138, 43, 226, 0.4);
    color: #fff;
    border-left: 3px solid #8a2be2;
}

.lang-switcher-mobile {
    display: flex;
    gap: 5px;
    padding: 15px;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    margin-top: 10px;
    justify-content: center;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    flex: 1;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Home Content Styles
   ============================================ */
.home-content {
    color: #e0e0e0;
    line-height: 1.8;
    padding: 40px 0;
}

.home-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.home-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    padding-bottom: 10px;
}

.home-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.home-content p {
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 16px;
}

.home-content .intro-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.intro-description {
    background: rgba(138, 43, 226, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    white-space: pre-line;
    line-height: 1.8;
    color: #e0e0e0;
}

.home-content ul,
.home-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #e0e0e0;
}

.home-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.quick-facts {
    background: rgba(138, 43, 226, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

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

.fact-item {
    padding: 10px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 5px;
    border-left: 3px solid #8a2be2;
}

.fact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.fact-item span {
    color: #e0e0e0;
}

.advantages ul {
    list-style: none;
    padding-left: 0;
}

.advantages li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.advantages li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8a2be2;
    font-weight: bold;
    font-size: 20px;
}

.section-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.section-type {
    background: rgba(138, 43, 226, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.section-type h3 {
    color: #8a2be2;
    margin-top: 0;
}

.conclusion {
    background: rgba(138, 43, 226, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #8a2be2;
}

.content-image {
    margin: 20px 0;
    text-align: center;
    width: 100%;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* ============================================
   Slots Content Styles
   ============================================ */
.slots-content {
    color: #e0e0e0;
    line-height: 1.8;
    padding: 40px 0;
}

.slots-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.slots-content .intro-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #e0e0e0;
}

.slots-text-content {
    color: #e0e0e0;
    font-size: 16px;
}

.slots-text-content p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.slots-text-content strong {
    color: #fff;
    font-weight: 600;
}

.slots-text-content ul {
    margin: 20px 0;
    padding-left: 30px;
    color: #e0e0e0;
}

.slots-text-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.slots-text-content div[style*="column-count"] {
    margin: 20px 0;
}

.providers-section {
    background: rgba(138, 43, 226, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.provider-item {
    padding: 12px 15px;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(138, 43, 226, 0.25);
    border-color: #8a2be2;
    transform: translateY(-2px);
}

.collection-section {
    margin: 40px 0;
}

.game-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.game-category {
    background: rgba(138, 43, 226, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #8a2be2;
}

.game-category h3 {
    color: #8a2be2;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.game-category h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.game-category ul {
    margin: 15px 0;
    padding-left: 30px;
}

.game-category li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.tournament-type {
    background: rgba(138, 43, 226, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .slots-content h1 {
        font-size: 1.8rem;
    }
    
    .slots-text-content {
        font-size: 14px;
    }
    
    .slots-text-content div[style*="column-count"] {
        column-count: 1 !important;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .game-category h3 {
        font-size: 1.5rem;
    }
    
    .game-category h4 {
        font-size: 1.1rem;
    }
}

.faq-section {
    margin: 40px 0;
}

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

.faq-item {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: #8a2be2;
}

.faq-question {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #8a2be2;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    color: #e0e0e0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .home-content h1 {
        font-size: 1.8rem;
    }
    
    .home-content h2 {
        font-size: 1.5rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-types {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer Styles
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, #1a0d2e 0%, #0d0618 100%);
    border-top: 2px solid rgba(138, 43, 226, 0.3);
    padding: 40px 0 20px;
    margin-top: auto;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section h4 {
    font-size: 16px;
}

.footer-section p {
    color: #b8b8b8;
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #8a2be2;
    padding-left: 5px;
}

.footer-certificates {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-certificates a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-certificates a:hover {
    opacity: 0.8;
}

.footer-certificates img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.footer-bottom p {
    color: #888;
    font-size: 12px;
}

/* ============================================
   Desktop Styles (768px and up)
   ============================================ */
@media (min-width: 768px) {
    .header-top-mobile {
        display: none;
    }

    .header-bottom-mobile {
        display: none;
    }

    .logo-desktop {
        display: block;
    }
    
    .logo-mobile {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .auth-buttons-desktop {
        display: flex;
        gap: 10px;
    }

    .main-nav {
        display: flex;
        flex-direction: row;
        width: auto;
        padding: 0;
        border-top: none;
        margin-top: 0;
        gap: 5px;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav .nav-link {
        padding: 10px 15px;
        margin-bottom: 0;
    }

    .main-nav .nav-link {
        text-align: center;
    }
    
    .main-nav .nav-link:hover {
        padding-left: 15px;
    }

    .lang-switcher-mobile {
        display: none;
    }

    .burger-menu-toggle {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Large Desktop Styles (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .header-content {
        padding: 20px 0;
    }

    .logo img {
        height: 60px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav .nav-link {
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .main-content {
        padding: 60px 0;
    }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #8a2be2;
    transition: color 0.3s ease;
}

a:hover {
    color: #9d3ef0;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ============================================
   Responsive Images
   ============================================ */
img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0d2e;
}

::-webkit-scrollbar-thumb {
    background: #8a2be2;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9d3ef0;
}

/* ============================================
   Slots Sections
   ============================================ */
.slots-section {
    padding: 0px 0;
}

/* ============================================
   Slots Grid & Cards
   ============================================ */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.slot-card {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0d2e 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
    border-color: #8a2be2;
}

.slot-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: #0d0618;
}

.slot-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.slot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slot-badge.badge-yellow {
    background: #ffd700;
    color: #1a0d2e;
}

.slot-badge.badge-red {
    background: #ff4444;
    color: #fff;
}

.slot-badge.badge-purple {
    background: #8a2be2;
    color: #fff;
}

.slot-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #ff4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-favorite:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.slot-favorite svg {
    width: 18px;
    height: 18px;
}

.slot-provider {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

.slot-play-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb3 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.slot-play-btn:hover {
    background: linear-gradient(135deg, #9d3ef0 0%, #7a21c3 100%);
    transform: scale(1.02);
}

.slot-title {
    padding: 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптивность для карточек слотов */
@media (max-width: 767px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px 0;
    }
    
    .slot-title {
        font-size: 12px;
        padding: 10px 8px;
        min-height: 36px;
    }
    
    .slot-play-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

/* ============================================
   Games Table Styles (for Live section)
   ============================================ */
.live-games-table {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    background: rgba(45, 27, 78, 0.5);
    padding: 20px;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.games-table thead {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb3 100%);
}

.games-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

.games-table td {
    padding: 15px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.games-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.1);
    transition: background 0.3s ease;
}

.games-table tbody tr:last-child td {
    border-bottom: none;
}

.games-table td strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .live-games-table {
        padding: 10px;
    }
    
    .games-table th,
    .games-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .games-table th {
        font-size: 11px;
    }
}

/* ============================================
   Top Slots Table Styles
   ============================================ */
.top-slots-table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    background: rgba(45, 27, 78, 0.5);
    padding: 20px;
}

.top-slots-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.top-slots-table thead {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb3 100%);
}

.top-slots-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

.top-slots-table td {
    padding: 15px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.top-slots-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.1);
    transition: background 0.3s ease;
}

.top-slots-table tbody tr:last-child td {
    border-bottom: none;
}

.top-slots-table td strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .top-slots-table-container {
        padding: 10px;
    }
    
    .top-slots-table th,
    .top-slots-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .top-slots-table th {
        font-size: 11px;
    }
}

/* ============================================
   Status Table Styles
   ============================================ */
.status-table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    background: rgba(45, 27, 78, 0.5);
    padding: 20px;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.status-table thead {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb3 100%);
}

.status-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

.status-table td {
    padding: 15px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.status-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.1);
    transition: background 0.3s ease;
}

.status-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .status-table-container {
        padding: 10px;
    }
    
    .status-table th,
    .status-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .status-table th {
        font-size: 11px;
    }
    
    .footer-certificates {
        gap: 15px;
    }
    
    .footer-certificates img {
        max-width: 120px;
    }
}

