/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Top Welcome Banner */
.top-welcome-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 1001;
}

.welcome-text-content {
    display: inline-block;
    padding-left: 100%;
    animation: welcomeMarquee 45s linear infinite;
}

.welcome-text-content span {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@keyframes welcomeMarquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Moving Text Banner */
.moving-text-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.moving-text-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

.moving-text-content span {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff6b35;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

/* Main Content */
main {
    margin-top: 140px;
    min-height: calc(100vh - 80px);
}

/* Section Titles */
.page-title,
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
}

/* Slider Styles */
.slider-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 400px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner-slide {
    position: relative;
}

.main-banner-slide img {
    object-fit: contain;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.main-banner-slide .slide-content {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 30px;
}

.main-banner-slide .slide-content h3 {
    font-size: 42px;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    margin-bottom: 15px;
}

.main-banner-slide .slide-content p {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    text-align: center;
}

.slide-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ff6b35;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Games Section */
.games-section {
    padding: 60px 0;
}

.games-grid,
.games-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.game-image {
    position: relative;
    height: 200px;
    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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay i {
    font-size: 48px;
    color: white;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ff6b35;
}

.game-info p {
    color: #cccccc;
    font-size: 14px;
}

.view-all-btn {
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

/* Games Page Styles */
.games-page {
    padding: 40px 0;
}

.tabs-container {
    margin-bottom: 40px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

/* Game Detail Page */
.game-detail-page {
    padding: 40px 0;
}

.game-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    color: #ff6b35;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #f7931e;
}

.back-btn i {
    margin-right: 8px;
}

.game-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.game-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.game-detail-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6b35;
}

.game-detail-info p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.game-features {
    margin-bottom: 30px;
}

.game-features h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.game-features ul {
    list-style: none;
}

.game-features li {
    padding: 8px 0;
    color: #cccccc;
}

.game-features i {
    color: #4caf50;
    margin-right: 10px;
}

.game-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.play-btn,
.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.play-btn {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
}

.download-btn {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.play-btn:hover,
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.download-btn:hover {
    background: #ff6b35;
    color: white;
}

.play-btn i,
.download-btn i {
    margin-right: 8px;
}

.account-creation {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.account-creation h3 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.account-creation p {
    color: #cccccc;
    margin-bottom: 20px;
}

.account-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-messenger {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-messenger {
    background: #0084ff;
}

.btn-whatsapp:hover,
.btn-messenger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp i,
.btn-messenger i {
    margin-right: 8px;
}

/* Payment Page */
.payment-page {
    padding: 40px 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.payment-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
    display: block;
    max-width: 100%;
    height: auto;
}

.payment-method h3 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.payment-method p {
    color: #cccccc;
    font-size: 14px;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.info-card h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
}

.info-card p {
    color: #cccccc;
    line-height: 1.6;
}

.deposit-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.deposit-instructions h2 {
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ff6b35;
    margin-bottom: 8px;
}

.step-content p {
    color: #cccccc;
    font-size: 14px;
}

/* Contact Page */
.contact-page {
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact-btn i {
    margin-right: 8px;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-hours,
.response-time,
.faq-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.support-hours h3,
.response-time h3,
.faq-section h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.support-hours h3 i,
.response-time h3 i,
.faq-section h3 i {
    margin-right: 10px;
}

.hours-grid {
    display: grid;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #cccccc;
}

.time {
    color: #4caf50;
    font-weight: bold;
}

.response-time ul {
    list-style: none;
}

.response-time li {
    padding: 8px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.response-time i {
    color: #4caf50;
    margin-right: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: #ff6b35;
    margin-bottom: 8px;
}

.faq-item p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.contact-cta h2 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 999;
    pointer-events: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.messenger {
    background: #0084ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-right: 2px solid #ff6b35;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 80px 20px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 107, 53, 0.2);
        transform: none;
    }
    
    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    main {
        margin-top: 120px;
    }
    
    .page-title,
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .games-grid,
    .games-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .game-card {
        border-radius: 12px;
    }
    
    .game-image {
        height: 120px;
    }
    
    .game-info {
        padding: 15px;
    }
    
    .game-info h3 {
        font-size: 16px;
    }
    
    .game-info p {
        font-size: 12px;
    }
    
    .game-detail-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .game-detail-info h1 {
        font-size: 28px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .payment-method {
        padding: 20px 15px;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .payment-method h3 {
        font-size: 16px;
    }
    
    .payment-method p {
        font-size: 12px;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .play-btn,
    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .account-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-whatsapp,
    .btn-messenger {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-buttons {
        padding: 0 15px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .tabs {
        gap: 8px;
        padding: 0 10px;
    }
    
    .tab-btn {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .slider-section {
        padding: 20px 0;
    }
    
    .slide {
        height: 250px;
    }
    
    .slide-content h3 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .games-section {
        padding: 30px 0;
    }
    
    .games-page {
        padding: 20px 0;
    }
    
    .game-detail-page {
        padding: 20px 0;
    }
    
    .payment-page {
        padding: 20px 0;
    }
    
    .contact-page {
        padding: 20px 0;
    }
    
    .deposit-instructions {
        padding: 30px 20px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .support-hours,
    .response-time,
    .faq-section {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .moving-text-banner {
        padding: 8px 0;
    }
    
    .moving-text-content span {
        font-size: 14px;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title,
    .section-title {
        font-size: 28px;
    }
    
    .slide {
        height: 300px;
    }
    
    .slide-content h3 {
        font-size: 28px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .games-grid,
    .games-grid-full {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-instructions {
        padding: 30px 20px;
    }
}

/* Mobile Touch Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.game-card,
.payment-method,
.contact-card,
.btn-primary,
.btn-secondary,
.tab-btn,
.floating-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.game-card:active,
.payment-method:active,
.contact-card:active {
    transform: scale(0.98);
}

.btn-primary:active,
.btn-secondary:active,
.tab-btn:active,
.floating-btn:active {
    transform: scale(0.95);
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on input focus */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-size: 16px;
}

/* Mobile viewport fix */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Better mobile typography */
body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Mobile-first animations */
@media (max-width: 768px) {
    .game-card,
    .payment-method,
    .contact-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .game-card:hover,
    .payment-method:hover,
    .contact-card:hover {
        transform: translateY(-3px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card,
.payment-method,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}
