﻿/* CSS -  */
:root {
    --primary-color: #1a75bc; /*  -  */
    --secondary-color: #d4af37; /*  -  */
    --bg-color: #0a192f; /*  */
    --dark-color: #0f2a50; /*  */
    --light-color: #ffffff; /*  */
    --accent-color: #00c2cb; /*  -  */
    --border-radius: 10px; /*  */
    --shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /*  */
}

/*  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--bg-color), #07152a);
    color: var(--light-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 117, 188, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 25%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--light-color);
}

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

/*  -  */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
    top: -30%;
    left: -30%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #145a9a);
    color: var(--light-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #145a9a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #b6952e);
    color: #1a1a1a;
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b6952e, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/*  -  */
.header {
    background: rgba(15, 42, 80, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.menu-btn, .search-btn {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-btn:hover, .search-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

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

.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

/*  -  */
.promo-section {
    margin: 25px 0;
}

.promo-banner {
    background: rgba(15, 42, 80, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
}

.promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/*  */
.promo-slider {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    margin: 10px 0;
}

.promo-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.promo-slide.active {
    opacity: 1;
    z-index: 2;
}

.promo-content {
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.promo-content h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.promo-content .sub-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

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

.slider-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.whatsapp-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.whatsapp-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-img {
    width: 50px;
    height: 50px;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.promo-card {
    background: linear-gradient(135deg, var(--dark-color), #1a3a6e);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.promo-card-content {
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    padding-bottom: 110px;
}

.promo-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.promo-card-content p {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.promo-img {
    margin-top: 12px;
    max-height: 65px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

/*  */
.promo-icon {
    margin-top: 15px;
    width: 85px;
    height: 85px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.promo-icon i {
    font-size: 42px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-icon {
    transform: translateX(-50%) scale(1.1);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.promo-card:hover .promo-icon i {
    transform: scale(1.1);
    color: #f0c050;
}

/*  */
.invite-section {
    margin: 25px 0;
}

.invite-banner {
    background: linear-gradient(90deg, rgba(15, 42, 80, 0.7), rgba(26, 117, 188, 0.5));
    border-radius: var(--border-radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
}

.invite-banner i {
    color: var(--secondary-color);
    font-size: 28px;
    flex-shrink: 0;
}

.invite-text {
    font-size: 15px;
    font-weight: 500;
}

/*  -  */
.payment-section {
    margin: 25px 0;
    background: rgba(15, 42, 80, 0.7);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
}

.payment-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/*  */
.payment-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    position: relative;
    padding-bottom: 5px;
}

.payment-tabs::-webkit-scrollbar {
    display: none;
}

.payment-tab {
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    text-align: center;
    max-width: 130px;
    font-weight: 500;
}

.payment-tab.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.payment-tab.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/*  */
.payment-methods-container {
    display: none;
}

.payment-methods-container.active {
    display: block;
}

.payment-methods {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.payment-methods::-webkit-scrollbar {
    display: none;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
    max-width: 95px;
    padding: 10px 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.payment-icon i {
    font-size: 26px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.payment-method:hover .payment-icon {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.payment-method:hover .payment-icon i {
    color: #f0c050;
    transform: scale(1.1);
}

.payment-name {
    font-size: 12px;
    color: var(--light-color);
    text-align: center;
    font-weight: 500;
}

.crypto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon span {
    font-size: 15px;
    font-weight: bold;
    color: var(--secondary-color);
}

/*  */
.popular-games-section {
    margin: 25px 0 35px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-left: 5px;
}

.section-icon {
    color: var(--secondary-color);
    font-size: 24px;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/*  */
.game-promo-box {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color), #1a3a6e);
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-promo-content {
    padding: 20px;
    color: var(--light-color);
    order: 2;
    background: rgba(0, 0, 0, 0.15);
}

.game-promo-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.game-promo-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.game-register-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #145a9a);
    color: var(--light-color);
    font-weight: bold;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.game-register-btn:hover {
    background: linear-gradient(135deg, #145a9a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.game-promo-image {
    position: relative;
    width: 100%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: auto;
    background: rgba(0, 0, 0, 0.2);
}

.game-promo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    transition: all 0.5s ease;
}

.game-promo-box:hover .game-promo-img {
    transform: scale(1.03);
}

.game-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.game-logo-overlay {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 220px;
    text-align: center;
}

.game-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

/*  */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
}

.game-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--dark-color), #1a3a6e);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.game-img {
    width: 100%;
    display: block;
    height: 150px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.game-info {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 24px);
}

.game-badge {
    background: linear-gradient(135deg, var(--primary-color), #145a9a);
    color: var(--light-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.live-chat-icon {
    background: var(--light-color);
    color: var(--dark-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.live-chat-icon:hover {
    transform: scale(1.1);
}

.game-title {
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--light-color);
    background: rgba(0, 0, 0, 0.2);
}

/*  */
.terms-section {
    margin: 25px 0 40px 0;
    background: rgba(15, 42, 80, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.terms-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.terms-content {
    padding: 10px 0;
}

.terms-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.terms-box:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.terms-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-title i {
    font-size: 20px;
}

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

.terms-text p {
    margin-bottom: 10px;
}

.terms-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.4s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/*  -  */
.footer {
    background: rgba(15, 42, 80, 0.95);
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 12px;
    font-size: 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.footer-nav-item i {
    font-size: 22px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.footer-nav-item span {
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-nav-item.active, .footer-nav-item:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.footer-nav-item.active i, .footer-nav-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.footer-nav-item.active span, .footer-nav-item:hover span {
    color: var(--secondary-color);
    font-weight: 600;
}

/*  */
@media (min-width: 600px) {
    .game-promo-box {
        flex-direction: row;
        align-items: stretch;
    }
    
    .game-promo-content {
        width: 50%;
        padding: 30px;
    }
    
    .game-promo-image {
        width: 50%;
        height: auto;
        max-height: none;
    }
    
    .game-logo-overlay {
        bottom: 40px;
    }
    
    .game-promo-img {
        object-fit: cover;
    }
    
    .promo-card-content {
        padding-bottom: 115px;
    }
    
    .promo-icon {
        width: 90px;
        height: 90px;
        bottom: 20px;
    }
    
    .promo-icon i {
        font-size: 45px;
    }
}

@media (min-width: 481px) and (max-width: 599px) {
    .promo-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .promo-card-content {
        padding: 15px 12px;
        padding-bottom: 105px;
    }
    
    .promo-card-content h3 {
        font-size: 15px;
    }
    
    .promo-card-content p {
        font-size: 12px;
    }
    
    .promo-icon {
        width: 80px;
        height: 80px;
    }
    
    .promo-icon i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .game-promo-content h3 {
        font-size: 18px;
    }
    
    .game-promo-content p {
        font-size: 13px;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .popular-games-section {
        margin-top: 15px;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card-content {
        padding-bottom: 105px;
    }
    
    .promo-icon {
        width: 80px;
        height: 80px;
        bottom: 15px;
    }
    
    .promo-icon i {
        font-size: 38px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-title {
        font-size: 16px;
    }
    
    .terms-text {
        font-size: 13px;
    }
    
    .terms-section {
        margin-bottom: 70px;
    }
    
    .payment-tab {
        padding: 10px 15px;
        font-size: 14px;
        max-width: 110px;
    }
}