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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* Header */
.header {
    background-color: #0a0a0a;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

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

.auth-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-input {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 4px;
    width: 140px;
    font-size: 13px;
}

.auth-input::placeholder {
    color: #666;
}


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

.btn-signup {
    background-color: transparent;
    border: 1px solid #aaff00;
    color: #aaff00;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-signup:hover {
    background-color: #aaff00;
    color: #0a0a0a;
}

.btn-login {
    background-color: #aaff00;
    border: none;
    color: #0a0a0a;
    padding: 11px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #99ee00;
}

.language {
    color: #ffffff;
    font-size: 14px;
    padding: 0 10px;
    cursor: pointer;
}

/* Navigation */
.nav {
    background-color: #0f0f0f;
    padding: 0;
    border-bottom: 1px solid #1a1a1a;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-list li a:hover {
    background-color: #1a1a1a;
    color: #aaff00;
}

.badge {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 8px;
    padding: 3px 6px;
    border-radius: 2px;
    font-weight: bold;
    z-index: 10;
}

.badge-new {
    background-color: #aaff00;
    color: #0a0a0a;
}

.promotions-link {
    margin-left: auto;
}

.promotions-link a {
    color: #aaff00;
}

.gift-icon {
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 30px 0;
    position: relative;
}

.hero-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s;
    text-decoration: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid #2a2a2a;
    color: #ffffff;
    font-size: 40px;
    width: 50px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(170, 255, 0, 0.2);
    border-color: #aaff00;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #aaff00;
}

.dot:hover {
    background-color: #88dd00;
}

/* Games Section */
.games-section {
    padding: 40px 0;
    background-color: #0a0a0a;
}

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

.section-header h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.view-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
}

.view-more:hover {
    color: #aaff00;
}

.view-more-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.view-more-link:hover {
    color: #aaff00;
}

.nav-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
}

.arrow-btn {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background-color: #2a2a2a;
    border-color: #aaff00;
}

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

.popular-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.games-grid-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.games-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    height: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(170, 255, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

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



.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.game-provider {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.game-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.exclusive {
    position: relative;
}

.exclusive-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff0066 0%, #ff6600 100%);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 0, 102, 0.4);
}

.tab-groups {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    border: 1px solid #2a2a2a;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    z-index: 5;
}

/* Promotions Section */
.promotions-section {
    padding: 40px 0;
    background-color: #000000;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.promo-card {
    background-color: #0d0d0d;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.promo-image-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: #000000;
}

.promo-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.promo-info {
    padding: 16px;
    background-color: #0d0d0d;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-size: 15px;
    font-weight: bold;
    color: #aaff00;
    margin-bottom: 6px;
}

.promo-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    flex: 1;
    line-height: 1.4;
}

.btn-promo {
    background-color: transparent;
    border: 1px solid #aaff00;
    color: #aaff00;
    padding: 6px 16px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.3s;
    text-transform: capitalize;
    align-self: flex-start;
}

.btn-promo:hover {
    background-color: #aaff00;
    color: #0a0a0a;
}

/* Payment Methods Section */
.payment-section {
    padding: 40px 0;
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-logo {
    height: 35px;
    width: auto;
    filter: brightness(0.9);
    transition: all 0.3s;
}

.payment-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Providers Section */
.providers-section {
    padding: 40px 0;
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
}

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

.provider-item {
    display: flex;
    align-items: center;
}

.provider-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.7);
    opacity: 0.8;
    transition: all 0.3s;
}

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

/* Review Section */
.review-section {
    padding: 60px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.review-content {
    max-width: 1000px;
    margin: 0 auto;
}

.review-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #aaff00;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

.review-intro {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #0f0f0f;
    border-left: 4px solid #aaff00;
    border-radius: 4px;
}

.review-intro p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-intro p:last-child {
    margin-bottom: 0;
}

.review-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #0f0f0f;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
}

.review-title {
    font-size: 24px;
    font-weight: bold;
    color: #aaff00;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
}

.review-subtitle {
    font-size: 19px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.review-block p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-block p:last-child {
    margin-bottom: 0;
}

.review-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.review-list li {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.review-list li:before {
    content: "▸";
    color: #aaff00;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

.review-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.pros-section,
.cons-section {
    padding: 25px;
    background-color: #0a0a0a;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
}

.pros-title {
    font-size: 19px;
    font-weight: bold;
    color: #aaff00;
    margin-bottom: 15px;
}

.cons-title {
    font-size: 19px;
    font-weight: bold;
    color: #ff6666;
    margin-bottom: 15px;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #32CD32;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
    z-index: 1000;
    text-decoration: none;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(50, 205, 50, 0.7);
}

.chat-icon {
    font-size: 28px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .popular-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .games-grid-five {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .games-grid,
    .popular-slots-grid,
    .games-grid-five {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .auth-section {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .auth-inputs {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .auth-input {
        width: 100%;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .nav-list li a {
        padding: 12px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .slider-nav {
        width: 40px;
        height: 60px;
        font-size: 30px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .section-header h3 {
        font-size: 20px;
    }
    
    .games-section {
        padding: 30px 0;
    }
    
    .games-grid,
    .popular-slots-grid,
    .games-grid-five,
    .games-grid-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        height: 180px;
    }
    
    
    .promotions-section {
        padding: 30px 0;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .promo-image-wrapper {
        height: 120px;
    }
    
    .payment-section,
    .providers-section {
        padding: 30px 0;
    }
    
    .payment-methods,
    .providers-grid {
        justify-content: center;
        gap: 20px;
    }
    
    .payment-logo {
        height: 28px;
    }
    
    .provider-logo {
        height: 32px;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-icon {
        font-size: 24px;
    }
    
    .review-section {
        padding: 40px 0;
    }
    
    .review-main-title {
        font-size: 22px;
    }
    
    .review-intro {
        padding: 20px;
    }
    
    .review-block {
        padding: 20px;
    }
    
    .review-title {
        font-size: 20px;
    }
    
    .review-subtitle {
        font-size: 17px;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
    
    .auth-input {
        font-size: 14px;
        padding: 10px;
    }
    
    .btn-signup,
    .btn-login {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .nav-list li a {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .badge {
        font-size: 7px;
        padding: 2px 4px;
    }
    
    .section-header h3 {
        font-size: 18px;
    }
    
    .view-more,
    .view-more-link {
        font-size: 12px;
    }
    
    .games-grid,
    .popular-slots-grid,
    .games-grid-five,
    .games-grid-three {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .game-card {
        height: 200px;
    }
    
    
    .arrow-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .slider-nav {
        display: none;
    }
    
    .payment-logo {
        height: 24px;
    }
    
    .provider-logo {
        height: 28px;
    }
    
    .review-main-title {
        font-size: 18px;
    }
    
    .review-intro {
        padding: 15px;
    }
    
    .review-intro p {
        font-size: 14px;
    }
    
    .review-block {
        padding: 15px;
    }
    
    .review-title {
        font-size: 18px;
    }
    
    .review-subtitle {
        font-size: 16px;
    }
    
    .review-block p {
        font-size: 14px;
    }
    
    .review-list li {
        font-size: 14px;
    }
}
