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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #115d01 0%, #1a7a02 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles (Same as other pages) */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 10px;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
    position: relative;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    max-width: 190px;
    height: 50px;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.primary-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.primary-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4CAF50;
}

.current-page {
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 12px;
}

.dropdown-menu {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown-menu:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 10px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-button {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #4CAF50;
    color: #000;
}

.register-button {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    order: 3;
}

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

/* Main Content */
.casino-content {
    padding: 0 10px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 40px;
}

.hero-container {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 93, 1, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 93, 1, 0.6);
}

.hero-image {
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.casino-overview-section,
.slots-section,
.live-casino-section,
.table-games-section,
.crash-games-section,
.responsible-gaming-section,
.casino-tips-section,
.casino-cta-section {
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Overview Stats */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #115d01;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.casino-features {
    margin-top: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text {
    color: #333;
    font-weight: 500;
}

/* Slots Section */
.slots-categories {
    margin-top: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: #fff;
    color: #115d01;
    border: 2px solid #115d01;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #115d01;
    color: #fff;
}

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

.slot-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.slot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slot-info {
    padding: 20px;
}

.slot-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 5px;
}

.slot-provider {
    color: #666;
    margin-bottom: 15px;
}

.slot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-badge {
    background: rgba(17, 93, 1, 0.1);
    color: #115d01;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.feature-badge.jackpot {
    background: rgba(255, 215, 0, 0.2);
    color: #ff8c00;
}

.feature-badge.new {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.feature-badge.classic {
    background: rgba(96, 125, 139, 0.2);
    color: #607D8B;
}

.slot-rtp,
.slot-jackpot {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.slot-jackpot {
    color: #ff8c00;
    font-size: 16px;
}

.play-slot-btn {
    display: block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-slot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Slots Providers */
.slots-providers {
    margin-top: 50px;
    text-align: center;
}

.providers-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 30px;
}

.providers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.provider-logo {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.provider-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Live Casino */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.live-game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.live-game-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.live-badge {
    background: #ff4444;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.live-game-info {
    padding: 25px;
}

.live-game-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 10px;
}

.live-game-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.live-game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.live-feature {
    background: rgba(17, 93, 1, 0.1);
    color: #115d01;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.play-live-btn {
    display: block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.play-live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Table Games */
.table-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.table-game-category {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.table-game-category:hover {
    transform: translateY(-5px);
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 8px;
}

.category-subtitle {
    color: #666;
    font-style: italic;
}

.games-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.games-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
    color: #333;
}

.games-list li:before {
    content: "🎯";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.games-list li:last-child {
    border-bottom: none;
}

.category-btn {
    display: block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Crash Games */
.crash-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.crash-game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.crash-game-card.featured {
    border: 3px solid #FFD700;
}

.crash-game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #000;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.crash-game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.crash-game-info {
    padding: 25px;
}

.crash-game-title {
    font-size: 26px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.crash-game-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.crash-game-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(17, 93, 1, 0.05);
    border-radius: 10px;
}

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

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #115d01;
}

.play-crash-btn {
    display: block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.play-crash-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

.crash-games-features {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 25px;
    text-align: center;
}

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

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(17, 93, 1, 0.05);
    border-radius: 10px;
}

.feature-point .feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-point .feature-text {
    color: #333;
    font-weight: 500;
}

/* Responsible Gaming */
.responsible-gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.responsible-feature {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.responsible-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.responsible-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.responsible-description {
    color: #666;
    line-height: 1.6;
}

.responsible-gaming-cta {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 40px;
}

.rg-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.rg-cta-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.help-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-link {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Casino Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tip-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.tip-description {
    color: #666;
    line-height: 1.6;
}

/* Casino CTA */
.casino-cta-section {
    background: linear-gradient(135deg, #115d01, #1a7a02);
    color: #fff;
    text-align: center;
}

.cta-heading {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.primary-cta-button {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
}

.secondary-cta-button {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-cta-button:hover {
    background: #fff;
    color: #115d01;
}

/* Footer Styles (Same as other pages) */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 10px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.app-download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-download-link:hover {
    color: #4CAF50;
}

.app-icon {
    border-radius: 8px;
}

.payment-methods-footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.payment-methods-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #4CAF50;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .navigation-container {
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
        flex: 1;
    }
    
    .auth-buttons {
        order: 2;
        gap: 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: 15px;
    }
    
    .primary-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        order: 4;
        flex-basis: 100%;
    }
    
    .primary-navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .primary-navigation li {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .primary-navigation a,
    .current-page {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        text-align: left;
        color: #fff;
        border-bottom: none;
    }
    
    .primary-navigation a:hover,
    .current-page {
        background: rgba(255, 255, 255, 0.1);
        color: #4CAF50;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .dropdown-content.active {
        display: block;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content a {
        font-size: 14px;
        padding: 15px 40px;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
	
	    .auth-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }
	
	
    .navigation-container {
        padding: 10px 0;
    }
    
    .site-logo {
        max-width: 150px;
        height: 40px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tabs {
        justify-content: center;
    }
    
    .providers-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
	
	
	    .auth-buttons a {
        padding: 6px 12px;
        font-size: 13px;
    }
	
    .navigation-container {
        padding: 8px 0;
    }
    
    .site-logo {
        max-width: 130px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .slots-grid,
    .live-games-grid,
    .crash-games-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .crash-game-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .auth-buttons a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .navigation-container {
        padding: 6px 0;
    }
    
    .site-logo {
        max-width: 110px;
        height: 30px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        gap: 15px;
    }
    
    .provider-logo {
        width: 100px;
        height: 50px;
    }
}
