/* 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;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 0 10px;
}

html, body {
  overflow-x: hidden;
  position: relative;
}

/* Header Styles */
.primary-navigation-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 15px 15px;
}

.main-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand-logo {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-item-primary {
    font-weight: 500;
    color: #0f3460;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-item-primary:hover {
    color: #ff6b35;
}

.nav-link-standard {
    text-decoration: none;
    color: inherit;
}

.active-page-item {
    color: #ff6b35;
    font-weight: bold;
}

.user-actions-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-register-account, .btn-login-account {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.btn-register-account {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-login-account {
    background: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
}

.btn-register-account:hover, .btn-login-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-line-top, .hamburger-line-middle, .hamburger-line-bottom {
    width: 25px;
    height: 3px;
    background: #0f3460;
    margin: 3px 0;
    transition: 0.3s;
}

/* Casino Hero Section */
.casino-hero-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.casino-main-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.casino-hero-description {
    font-size: 1.3rem;
    color: #b8c6db;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-casino-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.casino-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8c6db;
    font-size: 1rem;
}

.hero-casino-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-play-now, .btn-live-casino {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-play-now {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-live-casino {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
}

.btn-play-now:hover, .btn-live-casino:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.casino-hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Game Categories Section */
.game-categories-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.section-title-main {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.featured-category {
    border: 2px solid #6f42c1;
    background: rgba(111, 66, 193, 0.1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.category-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category-count {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.category-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.popular-games {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.popular-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.games-list {
    list-style: none;
}

.games-list li {
    color: #b8c6db;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-play-category {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-play-category.featured {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.btn-play-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.btn-play-category.featured:hover {
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

/* Live Casino Section */
.live-casino-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.live-casino-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.live-casino-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.live-casino-description {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.live-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.live-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.live-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.live-feature-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.live-feature-text {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.live-tables-schedule {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.schedule-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.schedule-time {
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.9rem;
}

.schedule-game {
    color: #b8c6db;
    font-size: 0.9rem;
}

.btn-join-live {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-join-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.live-table-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.live-status {
    color: #ff4444;
    font-weight: bold;
    font-size: 0.9rem;
}

.table-name {
    color: white;
    font-weight: bold;
}

.players-count {
    color: #b8c6db;
    font-size: 0.9rem;
}

.dealer-area {
    margin-bottom: 1.5rem;
}

.dealer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.dealer-avatar {
    border-radius: 50%;
    border: 2px solid #ff6b35;
}

.dealer-name {
    color: white;
    font-weight: bold;
    display: block;
}

.dealer-status {
    color: #b8c6db;
    font-size: 0.9rem;
}

.game-area {
    margin-bottom: 1.5rem;
}

.roulette-wheel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 3px solid #ff6b35;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.wheel-center {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.wheel-color {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.wheel-color.red {
    background: #ff4444;
}

.betting-time {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.betting-status {
    color: #28a745;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.time-remaining {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: bold;
}

.betting-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bet-option {
    padding: 0.8rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 0.9rem;
}

.bet-option.red {
    background: rgba(255, 68, 68, 0.3);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.bet-option.black {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid #666;
}

.bet-option.even, .bet-option.odd {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c6db;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bet-option:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.recent-numbers {
    margin-bottom: 1rem;
}

.recent-title {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.numbers-list {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.number.red {
    background: #ff4444;
    color: white;
}

.number.black {
    background: #333;
    color: white;
}

.chat-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    max-height: 80px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.player-name, .dealer-name {
    color: #ff6b35;
    font-weight: bold;
}

.message-text {
    color: #b8c6db;
    margin-left: 0.5rem;
}

/* Progressive Jackpots Section */
.jackpots-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.jackpots-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.jackpots-description {
    color: #b8c6db;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.jackpot-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.jackpot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.jackpot-card.mega {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.jackpot-card.major {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.jackpot-card.minor {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.jackpot-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.jackpot-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.jackpot-name {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.jackpot-amount {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.jackpot-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.jackpot-type, .jackpot-hit {
    color: #b8c6db;
    font-size: 0.9rem;
}

.jackpot-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recent-wins, .jackpot-features, .daily-schedule {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.wins-title, .schedule-title {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.win-item {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.jackpot-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: #b8c6db;
    font-size: 0.9rem;
}

.drop-time, .drop-probability {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-play-jackpot {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #333;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.btn-play-jackpot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.jackpots-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.info-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-title-small {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Game Providers Section */
.providers-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.providers-intro {
    color: #b8c6db;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.provider-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.provider-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.provider-name {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.provider-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.provider-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.provider-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popular-games-provider h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.popular-games-provider ul {
    list-style: none;
}

.popular-games-provider li {
    color: #b8c6db;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* How to Play Section */
.how-to-play-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.play-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.play-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.requirement {
    color: #b8c6db;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.step-note {
    color: #ff6b35;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.btn-step-action {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-step-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.game-rules-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.rules-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.rules-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c6db;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.tab-button:hover {
    background: rgba(255, 107, 53, 0.3);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rule-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.rule-item h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.rule-item p {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsible Gaming Section */
.responsible-gaming-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.responsible-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.responsible-description {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.responsible-tools {
    margin-bottom: 2rem;
}

.tools-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.tool-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tool-name {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tool-description {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.9rem;
}

.warning-signs {
    background: rgba(220, 53, 69, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    margin-bottom: 2rem;
}

.signs-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.signs-list {
    list-style: none;
}

.signs-list li {
    color: #b8c6db;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signs-list li:before {
    content: "⚠️ ";
    margin-right: 0.5rem;
}

.help-resources {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.resources-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.resources-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

.resource-item h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.resource-contact {
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.9rem;
}

.responsible-visual {
    display: flex;
    justify-content: center;
}

.guidelines-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
}

.guidelines-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.guideline-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guideline-text {
    color: #b8c6db;
    font-size: 0.95rem;
    line-height: 1.4;
}

.quick-limits {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.limits-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.limit-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 25px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.limit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Footer */
.site-footer-wrapper {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-radius: 20px 20px 0 0;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods-section {
    margin-bottom: 3rem;
}

.payment-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon-item {
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-icon-item:hover {
    transform: scale(1.1);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-links-list, .footer-contact-list {
    list-style: none;
}

.footer-link-item {
    color: #b8c6db;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #ff6b35;
}

.contact-item {
    color: #b8c6db;
    padding: 0.5rem 0;
}

.footer-disclaimer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer-text {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright-text {
    color: #888;
    font-size: 0.8rem;
}

/* Animations */
@keyframes jackpotPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rouletteWheelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.jackpot-amount {
    animation: jackpotPulse 3s ease-in-out infinite;
}

.roulette-wheel {
    animation: rouletteWheelSpin 20s linear infinite;
}


/* Aviator & JetX Spotlight Styles */
.aviator-jetx-spotlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    margin: 3rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.spotlight-title {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.game-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    color: #b8c6db;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.recent-multipliers {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.recent-multipliers h5 {
    color: white;
    margin-bottom: 0.8rem;
    text-align: center;
}

.multiplier-list {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.multiplier {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.multiplier.high {
    background: rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.multiplier.medium {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.multiplier.low {
    background: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.game-tips {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.game-tips h5 {
    color: white;
    margin-bottom: 0.8rem;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    color: #b8c6db;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.tips-list li:before {
    content: "💡 ";
    margin-right: 0.5rem;
}

.crash-games-strategy {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.strategy-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.strategy-item h5 {
    color: white;
    margin-bottom: 1rem;
}

.strategy-item p {
    color: #b8c6db;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
  .navigation-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
    
 .navigation-menu-wrapper.mobile-active {
    transform: translateX(0);
  }
  
   .navigation-menu-wrapper.mobile-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }
    
    .primary-menu-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .casino-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .casino-main-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .live-casino-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jackpots-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .play-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-navigation-container {
        padding: 1rem;
    }
    
    .casino-main-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .hero-casino-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-casino-stats {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-options {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

  .featured-games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-stats {
        justify-content: center;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    body {
        margin: 0 5px;
    }
    
    .casino-hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .casino-main-title {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .live-table-preview {
        padding: 1.5rem;
    }
    
    .jackpot-card {
        padding: 2rem;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
    
    .provider-card {
        padding: 1.5rem;
    }
    
    .play-step {
        padding: 1.5rem;
    }
    
    .guidelines-card {
        padding: 1.5rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .casino-main-title {
        font-size: 1.5rem;
    }
    
    .section-title-main {
        font-size: 1.5rem;
    }
    
    .hero-casino-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .category-features {
        justify-content: center;
    }
    
    .provider-stats {
        justify-content: center;
    }
    
    .jackpot-amount {
        font-size: 1.8rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* Special Effects */
.category-card:hover .category-icon {
    animation: jackpotPulse 1s ease-in-out;
}

.live-status {
    animation: jackpotPulse 2s ease-in-out infinite;
}

.betting-time .time-remaining {
    animation: jackpotPulse 1s ease-in-out infinite;
}

/* Dark Mode Compatibility */
@media (prefers-color-scheme: dark) {
    .provider-logo {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .tab-button {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Print Styles */
@media print {
    .mobile-menu-toggle,
    .hero-casino-buttons,
    .btn-play-category,
    .btn-join-live,
    .btn-play-jackpot,
    .btn-step-action,
    .limit-button {
        display: none;
    }
    
    .casino-hero-container,
    .live-casino-content-grid,
    .responsible-content-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        background: white;
        color: black;
        margin: 0;
    }
    
    .section-title-main,
    .casino-main-title,
    .category-title,
    .jackpot-name,
    .provider-title {
        color: black;
    }
}
