/* Global Styles */
:root {
    --primary-color: #FF6347; /* Orange-red */
    --secondary-color: #FFC107; /* Gold */
    --dark-bg: #1A1A1A;
    --darker-bg: #121212;
    --card-bg: #2A2A2A;
    --text-light: #FFFFFF;
    --text-muted: #AAAAAA;
    --border-color: #333333;
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --new-badge: #4CAF50;
    --popular-badge: #FF6347;
    --exclusive-badge: #9C27B0;
    --casino-badge: #2196F3;
    --sports-badge: #FF9800;
    --crypto-badge: #9C27B0;
    --live-badge: #F44336;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    padding-left: 20px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
}

section {
    margin-bottom: 50px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background-color: #ff4d30;
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 12px 30px;
    font-size: 18px;
}

/* Header Styles */
.site-header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Sidebar Styles */
.sidebar {
    width: 70px;
    background-color: var(--dark-bg);
    position: fixed;
    height: calc(100vh - 80px);
    left: 0;
    top: 80px;
    z-index: 100;
    transition: width 0.3s ease;
    border-right: 1px solid var(--border-color);
    overflow: hidden;
}

.sidebar:hover {
    width: 200px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-menu li:hover, .sidebar-menu li.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-menu li.active {
    border-left: 3px solid var(--primary-color);
}

.sidebar-menu .icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.sidebar-menu span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-menu span {
    opacity: 1;
}

/* Main Content Styles */
.main-content {
    margin-left: 70px;
    padding: 20px 0;
}

/* Game Categories */
.game-categories {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    margin-bottom: 30px;
}

.category-card {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--card-bg);
    border-radius: 8px;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-card:hover, .category-card.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.category-card.active {
    background-color: rgba(255, 99, 71, 0.1);
}

.category-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    max-width: 100%;
    max-height: 100%;
}

.category-info h3 {
    font-size: 16px;
    margin-bottom: 3px;
}

.games-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* Search and Filter */
.search-filter {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 4px;
    padding: 0 10px;
    flex-grow: 1;
    max-width: 300px;
}

.search-box svg {
    margin-right: 10px;
}

.search-box input {
    background-color: transparent;
    border: none;
    padding: 10px 0;
    color: var(--text-light);
    width: 100%;
}

.search-box input:focus {
    outline: none;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Games Grid */
.slot-games-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.game-badge.new {
    background-color: var(--new-badge);
}

.game-badge.popular {
    background-color: var(--popular-badge);
}

.game-badge.exclusive {
    background-color: var(--exclusive-badge);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.game-card:hover .play-button {
    opacity: 1;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Welcome Bonus Section */
.welcome-bonus {
    margin-bottom: 40px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.bonus-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 20px;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card.main-bonus {
    grid-column: span 3;
    background: linear-gradient(45deg, var(--dark-bg), var(--card-bg));
    border: 1px solid var(--secondary-color);
}

.bonus-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonus-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: var(--casino-badge);
}

.bonus-badge.sports {
    background-color: var(--sports-badge);
}

.bonus-badge.crypto {
    background-color: var(--crypto-badge);
}

.bonus-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 80px;
}

.bonus-content p {
    margin-bottom: 15px;
    flex-grow: 1;
}

.bonus-content ul {
    margin-bottom: 15px;
}

.bonus-content .btn {
    align-self: flex-start;
}

/* Featured Slot */
.featured-slot {
    margin-bottom: 40px;
}

.featured-game {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button.large {
    opacity: 0.8;
}

.featured-details {
    padding: 20px;
}

.featured-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.game-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: a20px;
}

.spec {
    display: flex;
    font-size: 14px;
}

.spec-label {
    font-weight: bold;
    margin-right: 5px;
}

.featured-bonus {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
}

.featured-bonus h4 {
    margin-bottom: 10px;
}

.featured-bonus p {
    margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* Bonuses Overview */
.bonuses-overview {
    margin-bottom: 40px;
}

.bonuses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.bonus-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.bonus-item.freespins {
    border-left: 3px solid var(--secondary-color);
}

.bonus-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 80px;
}

.bonus-item p {
    margin-bottom: 15px;
}

.bonus-item ul {
    margin-bottom: 15px;
}

/* Banking Section */
.banking-section {
    margin-bottom: 40px;
}

.banking-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.banking-info {
    margin-bottom: 30px;
}

.banking-info h3 {
    margin-bottom: 15px;
}

.payment-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-table h3 {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: bold;
    color: var(--secondary-color);
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h3 {
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-logos img {
    height: 30px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.payment-logos img:hover {
    filter: grayscale(0);
}

.banking-cta {
    text-align: center;
    margin-top: 20px;
}

/* About Casino */
.about-casino {
    margin-bottom: 40px;
}

.casino-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    background-image: linear-gradient(45deg, rgba(255, 99, 71, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.casino-logo {
    width: 150px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 100%;
}

.casino-details {
    flex-grow: 1;
}

.casino-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    margin-right: 10px;
}

.star {
    color: var(--secondary-color);
    font-size: 20px;
}

.star.half-filled, .star.half {
    position: relative;
}

.star.half-filled::after, .star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: var(--secondary-color);
}

.star.empty {
    color: var(--border-color);
}

.rating-value {
    font-weight: bold;
}

.casino-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-item {
    display: flex;
}

.info-label {
    font-weight: bold;
    margin-right: 5px;
    min-width: 80px;
}

.casino-review {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.casino-review h3, .casino-review h4 {
    margin-bottom: 10px;
}

.casino-review p {
    margin-bottom: 15px;
}

.sports-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 15px 15px;
    display: none;
}

/* VIP Program */
.vip-program {
    margin-bottom: 40px;
}

.vip-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.vip-intro {
    margin-bottom: 30px;
}

.vip-intro h3 {
    margin-bottom: 10px;
}

.level-timeline {
    position: relative;
    padding: 0 0 30px 30px;
    margin-bottom: 30px;
}

.level-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-point {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid var(--card-bg);
}

.timeline-content {
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.timeline-content h4 {
    margin-bottom: 5px;
}

.timeline-content p {
    margin-bottom: 10px;
    font-style: italic;
}

.benefits-table {
    width: 100%;
    margin-top: 20px;
}

.benefits-table th, .benefits-table td {
    text-align: center;
}

.benefits-table th:first-child, .benefits-table td:first-child {
    text-align: left;
}

/* License & Trust */
.license-trust {
    margin-bottom: 40px;
}

.trust-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.license-info {
    margin-bottom: 30px;
}

.license-info h3 {
    margin-bottom: 15px;
}

.license-info p {
    margin-bottom: 10px;
}

.trust-factors {
    margin-bottom: 30px;
}

.trust-factors h3 {
    margin-bottom: 15px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.trust-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.trust-item h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.complaint-process {
    margin-bottom: 30px;
}

.complaint-process h3 {
    margin-bottom: 15px;
}

.complaint-process p {
    margin-bottom: 10px;
}

.complaint-process ol {
    margin-bottom: 15px;
}

/* Player Reviews */
.player-reviews {
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.reviewer-details h4 {
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
}

.review-content {
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

/* Support Section */
.support-section {
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.support-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.support-card h3 {
    margin-bottom: 15px;
}

.support-card p {
    margin-bottom: 10px;
}

.support-card .btn {
    margin-top: 15px;
}

/* Responsible Gambling */
.responsible-gambling {
    margin-bottom: 40px;
}

.responsible-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer p {
    margin-bottom: 10px;
}

.disclaimer ul {
    margin-bottom: 15px;
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.organization h4 {
    margin-bottom: 10px;
}

.organization p {
    margin-bottom: 5px;
}

.age-restriction {
    padding: 15px;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), #ff8c00);
    border-radius: 8px;
    margin-bottom: 40px;
}

.cta-content {
    padding: 40px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Review Sites */
.review-sites {
    margin-bottom: 40px;
}

.review-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.review-logos img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.review-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-bg);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .featured-game {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card.main-bonus {
        grid-column: auto;
    }
    
    .payment-tables {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo {
        margin: 0 auto 20px;
    }
    
    .casino-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .sidebar {
        width: 0;
        z-index: 1001;
    }
    
    .sidebar.active {
        width: 200px;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .header-actions .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .game-categories {
        flex-wrap: wrap;
    }
    
    .category-card {
        min-width: calc(50% - 15px);
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .category-card {
        min-width: 100%;
    }
    
    .games-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Game Badge Colors */
.bonus-badge.casino {
    background-color: var(--casino-badge);
}

.bonus-badge.sports {
    background-color: var(--sports-badge);
}

.bonus-badge.crypto {
    background-color: var(--crypto-badge);
}

.bonus-badge.live {
    background-color: var(--live-badge);
}

/* Animation Effects */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-section .btn-primary {
    animation: pulse 2s infinite;
}

.featured-game .play-button.large {
    transition: transform 0.3s ease;
}

.featured-game:hover .play-button.large {
    transform: translate(-50%, -50%) scale(1.1);
}

.timeline-point::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}
section {
    margin-bottom: 40px;
}

.faq-list {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-