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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: rgb(36, 0, 6);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, rgb(71, 20, 22) 0%, rgb(36, 0, 6) 100%);
    padding: 10px 0;
    border-bottom: 2px solid #ffd600;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.logo {
    width: 230px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.news-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffd600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.datetime {
    font-size: 12px;
    color: #ccc;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #ffd600;
}

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

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.divider {
    color: #ffd600;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: #ffd600;
    color: #000;
}

.btn-login:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-login:active {
    background: #cc9900;
}

.btn-register {
    background: #ffd600;
    color: #000;
}

.btn-register:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-register:active {
    background: #cc9900;
}

.main-nav {
    background: rgb(71, 20, 22);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 214, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-item.hot::before {
    content: 'HOT';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.nav-item:hover {
    background: #ffd600;
    color: #000;
    transform: scale(1.05);
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-item span {
    font-size: 12px;
    font-weight: 600;
}

.hero-slider {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    height: 500px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 500px;
    display: none;
}

.slide.active {
    display: block;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ffd600;
    width: 30px;
    border-radius: 6px;
}

.main-content {
    background: rgb(19, 0, 4);
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
}

.gold-title {
    background: linear-gradient(135deg, #ffd600 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hot-provider {
    padding: 40px 0;
    background: rgb(19, 0, 4);
}

.total-display {
    background: linear-gradient(135deg, rgb(71, 20, 22) 0%, rgb(36, 0, 6) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid #ffd600;
}

.total-label {
    font-size: 24px;
    color: #ffd600;
    margin-bottom: 10px;
}

.total-amount {
    font-size: 36px;
    font-weight: bold;
    color: #ffd600;
}

.currency {
    margin-right: 10px;
}

.provider-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #ffd600 rgb(36, 0, 6);
}

.provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    padding: 20px;
    background: rgb(36, 0, 6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.provider-item:hover {
    background: rgb(71, 20, 22);
    transform: scale(1.1);
}

.provider-logo {
    font-size: 40px;
    margin-bottom: 10px;
}

.hot-games {
    padding: 40px 0;
    background: rgb(19, 0, 4);
}

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

.game-card {
    background: rgb(36, 0, 6);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.game-image img {

    height: 100%;
    object-fit: cover;
}

.game-name {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.statistics {
    padding: 40px 0;
    background: rgb(19, 0, 4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgb(71, 20, 22) 0%, rgb(36, 0, 6) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ffd600;
}

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

.stat-label {
    font-size: 16px;
    color: #ffd600;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.last-withdrawal {
    padding: 40px 0;
    background: rgb(19, 0, 4);
}

.section-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.withdrawal-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.withdrawal-card {
    min-width: 280px;
    background: linear-gradient(135deg, #ffd600 0%, #ffed4e 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #fff;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    text-align: center;
}

.user-name {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.amount {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timestamp {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.promotions {
    padding: 40px 0;
    background: rgb(19, 0, 4);
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.promo-card {
    background: rgb(36, 0, 6);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
}

.promo-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(71, 20, 22) 0%, rgb(36, 0, 6) 100%);
}

.promo-placeholder {
    font-size: 24px;
    color: #ffd600;
    text-align: center;
}

.footer {
    background: rgb(19, 0, 4);
    padding: 40px 0 20px;
    border-top: 2px solid #ffd600;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section h3 {
    color: #ffd600;
    margin-bottom: 15px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-info {
    color: #ccc;
    line-height: 1.8;
}

.footer-info p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffd600;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promotion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        width: 150px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .nav-container {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 5px;
        padding: 0 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        padding: 8px 12px;
        min-width: 80px;
        text-align: center;
    }
    
    .nav-icon {
        font-size: 20px;
    }
    
    .nav-item span {
        font-size: 11px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slide {
        height: 250px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .total-display {
        padding: 20px;
    }
    
    .total-label {
        font-size: 16px;
    }
    
    .total-amount {
        font-size: 28px;
    }
    
    .provider-slider {
        gap: 10px;
        padding: 15px 0;
    }
    
    .provider-item {
        width: 15%;
        padding: 15px;
    }
    
    .provider-logo {
        font-size: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-name {
        padding: 10px;
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-image {
        height: 150px;
    }
    
    .promo-placeholder {
        font-size: 18px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .withdrawal-slider {
        gap: 15px;
        padding: 15px 0;
    }
    
    .withdrawal-card {
        min-width: 240px;
        padding: 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .nav-item {
        padding: 6px 10px;
        min-width: 70px;
    }
    
    .nav-icon {
        font-size: 18px;
    }
    
    .nav-item span {
        font-size: 10px;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .slide {
        height: 200px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .total-display {
        padding: 15px;
    }
    
    .total-label {
        font-size: 14px;
    }
    
    .total-amount {
        font-size: 24px;
    }
    
    
    .withdrawal-card {
        min-width: 200px;
        padding: 15px;
    }
    
    .amount {
        font-size: 20px;
    }
}
