/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #EEEEEE;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #EB1118;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    height: 40px;
    width: auto;
}

.nav {
    display: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    opacity: 0.8;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgb(255, 161, 0);
}

/* Header buttons */
.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn {
    background-color: rgb(255, 161, 0);
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    gap: 8px;
    font-size: 14px;
}

.btn:hover {
    background-color: #e6a500;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 161, 0, 0.3);
}

.btn-text {
    display: none;
}

.btn-icon {
    font-size: 12px;
}

header .btn {
    padding-left: 15px;
    padding-right: 15px;
}

/* Burger menu */
.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    position: relative;
    z-index: 111111;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    background-color: #EB1118;
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hero section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.slot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-card:hover .slot-image {
    transform: scale(1.05);
}

.slot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-play-btn {
    background-color: rgb(255, 161, 0);
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.slot-play-btn:hover {
    background-color: #e6a500;
    transform: scale(1.05);
}

.slot-info {
    padding: 1.5rem;
}

.slot-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.slot-description {
    color: #666;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.section-content {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-content p {
    margin-bottom: 2rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card .btn {
    margin-top: 20px;
}

.feature-icon {
    font-size: 3rem;
    color: rgb(255, 161, 0);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* FAQ */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: rgb(255, 161, 0);
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgb(255, 161, 0);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-method {
    background-color: #555;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:440px) {
    .btn-text {
        display: inline;
    }
    
    .btn-icon {
        display: none;                                            
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

@media (min-width: 1440px) {
    .nav {
        display: block;
    }
    
    .burger {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.btn:focus,
.btn:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.3);
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
}

/* Image and Content Layout Classes for replacing inline styles */

/* Flex containers for image-text layouts */
.content-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.content-flex-reverse {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap-reverse;
}

.content-flex-col {
    flex: 1;
    min-width: 300px;
}

/* Image styles */
.section-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.section-image-glow {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 161, 0, 0.3);
}

/* Typography classes */
.section-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-heading-accent {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: rgb(255, 161, 0);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.section-text-white {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

/* Background sections */
.dark-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.light-gray-section {
    background: #f8f8f8;
}

/* Button variations */
.btn-dark {
    background: #000;
    color: white;
}

.btn-green {
    background: #34A853;
    color: white;
}

.btn-accent {
    background: rgb(255, 161, 0);
    color: #333;
}

/* VIP Card styles */
.vip-card-silver {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #333;
}

.vip-card-gold {
    background: linear-gradient(135deg, #FFD700, #FFF4B3);
    color: #333;
}

.vip-card-platinum {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.vip-card-platinum .feature-title {
    color: #eeeeee;
}

.vip-icon-silver {
    color: #666;
}

.vip-icon-gold {
    color: #B8860B;
}

.vip-icon-platinum {
    color: rgb(255, 161, 0);
}

.vip-text-dark {
    color: #555;
}

.vip-text-bold {
    font-weight: bold;
    color: #333;
}

.vip-text-bold-gold {
    font-weight: bold;
    color: #B8860B;
}

.vip-text-bold-platinum {
    font-weight: bold;
    color: rgb(255, 161, 0);
}

/* VIP Benefits section */
.vip-benefits-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 161, 0, 0.3);
}

.vip-benefits-card .feature-title {
    color: #eeeeee;
}

/* White card backgrounds */
.white-card {
    background: white;
}

/* Download buttons flex */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* List styles */
.feature-list {
    text-align: left;
    margin: 1rem 0;
}

.feature-list-white {
    text-align: left;
    margin: 1rem 0;
    color: white;
}

.feature-list-gray {
    text-align: left;
    color: #555;
    margin: 1rem 0;
}

/* Table cell colors */
.cell-silver {
    color: #666;
    font-weight: bold;
}

.cell-gold {
    color: #B8860B;
    font-weight: bold;
}

.cell-platinum {
    color: #333;
    font-weight: bold;
}

/* Quote styles */
.quote-text {
    font-style: italic;
}

.quote-author {
    font-weight: bold;
    margin-top: 1rem;
}

/* Additional list styles for responsible gaming */
.feature-list-left {
    text-align: left;
    margin-top: 1rem;
}

.feature-list-centered {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* Red icon for warnings */
.feature-icon-red {
    color: #dc3545;
} 