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

/* Event Products Styles */
.event-product {
    background: linear-gradient(135deg, #1a2238 0%, #2d3561 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.event-product:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.event-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-product:hover .event-item-image {
    transform: scale(1.1);
}

.product-info {
    padding: 0 15px;
    margin-bottom: 15px;
}

.product-name {
    color: #00d4ff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.product-description {
    color: #8892b0;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
}

.event-order-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.event-order-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.event-order-btn i {
    font-size: 16px;
}

/* Coming Soon Styles */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    grid-column: 1 / -1;
}

.coming-soon-content {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1a2238 0%, #2d3561 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    max-width: 500px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #00d4ff;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.coming-soon-content h2 {
    color: #00d4ff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.coming-soon-content p {
    color: #8892b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive for Event Products */
@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .coming-soon-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .coming-soon-icon {
        font-size: 60px;
    }
    
    .coming-soon-content h2 {
        font-size: 24px;
    }
    
    .coming-soon-content p {
        font-size: 14px;
    }
}

/* Mobile Single Column Layout for Event Products */
@media (max-width: 480px) {
    .event-product {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .product-image {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .product-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .product-price {
        margin-bottom: 15px;
    }
    
    .price-main {
        font-size: 18px;
        font-weight: bold;
    }
    
    .event-order-btn {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    .product-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0e27;
    color: #fff;
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    background: #1a2238;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

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

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

.logo img {
    height: 35px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s;
    font-weight: 400;
}

.nav-link:hover {
    color: #00d4ff;
}

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

.notification-btn,
.signin-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-size: 13px;
}

.notification-btn:hover,
.signin-btn:hover {
    color: #00d4ff;
}

.simple-login-link {
    color: #8892b0;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    padding: 5px;
}
.simple-login-link:hover {
    color: #00d4ff;
    transform: scale(1.1);
}

.user-balance-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.user-balance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    color: #fff;
    font-weight: bold;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.user-id {
    font-size: 11px;
    color: #8892b0;
}

.logout-btn {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-size: 13px;
}

.logout-btn:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff4444;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
}

.flag-icon {
    width: 24px;
    height: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 180px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.3) 0%, rgba(0, 50, 100, 0.5) 100%);
}

.game-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
}

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

.game-details {
    flex: 1;
}

.game-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.game-badges {
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
    font-size: 11px;
}

.btn-subscribe:hover {
    background: #6a5a9a;
}

.btn-player-id {
    background: #00bfff;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-player-id:hover {
    background: #00a8e6;
}

/* Main Content */
.main-content {
    background: #0f1429;
    min-height: 100vh;
    padding: 30px 0;
}

/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #8892b0;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

/* Horizontal Slider Section */
.slider-section {
    margin-bottom: 30px;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #0a0e27;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 212, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow i {
    font-size: 18px;
}

/* Products Section */
.products-section {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #00d4ff;
    cursor: pointer;
    font-size: 14px;
}

.filter-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.filter-option:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.filter-option i {
    margin-right: 8px;
    color: #00d4ff;
    font-size: 16px;
}

.filter-option span {
    color: #fff;
    font-size: 14px;
}

.show-all-btn {
    border: none;
    color: #00d4ff;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}

/* Products Grid */
.products-grid {
flex: 1;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px 0;
}

.popular-badge {
grid-column: 1 / -1;
margin-bottom: 20px;
margin-top: 10px;
text-align: center;
    margin-top: 10px;
    text-align: center;
}

.badge-popular {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: premiumPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-popular::before {
    content: '';
    margin-right: 8px;
    animation: starRotate 3s linear infinite;
    display: inline-block;
}

.badge-popular::after {
    content: '';
    margin-left: 8px;
    animation: starRotate 3s linear infinite reverse;
    display: inline-block;
}

@keyframes premiumPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.discount-tag {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.order-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.user-tier-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
    z-index: 2;
}

.user-tier-badge i {
    font-size: 12px;
}

/* Product Card */
.product-card {
    background: #1e2544;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.product-card.popular {
    border: 2px solid transparent;
    background: #1e2544;
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #4caf50;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.product-icon {
    margin: 15px 0 10px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon .uc-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* UC Info Section */
.uc-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: nowrap;
    min-height: 35px;
}

.uc-small-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.uc-amount {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.uc-bonus {
    font-size: 24px;
    font-weight: bold;
    color: #ffa500;
    line-height: 1;
    white-space: nowrap;
}

.bonus-percent {
    background: #ff6b00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    position: relative;
    top: -8px;
}

/* Product Price */
.product-price {
    margin: 12px 0 5px 0;
}

.price-label {
    display: block;
    font-size: 13px;
    color: #ffa500;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.price-main {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ffa500;
}

.old-price {
    font-size: 13px;
    color: #7a7a7a;
    text-decoration: line-through;
    margin: 5px 0;
}

.discount-tag {
    background: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.3s ease-out;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.login-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal overlay styles moved to .login-modal */

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1e2544 0%, #2a3458 100%);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
    backdrop-filter: blur(10px);
    transform-origin: center center;
    margin: 0 auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 68, 68, 0.9);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

.modal-icon:hover {
    transform: scale(1.05);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: #a0aec0;
    font-size: 15px;
    font-weight: 400;
}

.modal-form {
    margin-top: 20px;
}

.form-hint {
    display: block;
    color: #8892b0;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.modal-form .form-group {
    margin-bottom: 24px;
}

.modal-form label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.modal-form .input-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.modal-form .input-wrapper:hover {
    transform: translateY(-1px);
}

.modal-form .input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-form input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.modal-form input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    transform: translateY(-1px);
}

.modal-form input:focus + i {
    color: #00d4ff;
    transform: translateY(-50%) scale(1.1);
}

.modal-form input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.btn-modal-login {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.btn-modal-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
}

.btn-modal-login:active {
    transform: translateY(-1px);
}

.btn-modal-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-modal-login i {
    margin-right: 8px;
    font-size: 16px;
}

/* Loading Steps Animation */
.loading-steps {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.step-item.active {
    opacity: 1;
    border-left-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
}

.step-item.completed {
    opacity: 1;
    border-left-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.step-item i {
    margin-right: 12px;
    font-size: 16px;
    color: #00d4ff;
    min-width: 20px;
}

.step-item.completed i {
    color: #4ade80;
}

.step-item span {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.step-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-top: 2px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.step-item.completed .step-loader {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* API Response Display */
.api-response {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.response-header {
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.response-header i {
    margin-right: 8px;
}

.response-content {
    color: #a0aec0;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Modal Info */
.modal-info {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-info p {
    color: #a0aec0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.modal-info p:first-child {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-info p:last-child {
    margin-bottom: 0;
}

.modal-info i {
    margin-right: 8px;
    color: #00d4ff;
}

/* Error and Success Messages */
.error-message, .success-message {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.success-message {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #86efac;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .login-modal.active {
        padding: 16px;
    }
    
    .modal-content {
        padding: 24px 20px;
        margin: 0 auto;
        max-width: 420px;
        width: calc(100vw - 32px);
        max-height: calc(100vh - 32px);
        border-radius: 20px;
    }
    
    .modal-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .modal-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-header p {
        font-size: 14px;
    }
    
    .modal-form .form-group {
        margin-bottom: 20px;
    }
    
    .modal-form input {
        padding: 14px 14px 14px 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-modal-login {
        padding: 16px 20px;
        font-size: 15px;
        margin-top: 16px;
    }
    
    .loading-steps {
        padding: 16px;
        margin-top: 20px;
    }
    
    .step-item {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .step-item i {
        font-size: 14px;
        margin-right: 10px;
    }
    
    .step-item span {
        font-size: 13px;
    }
    
    .modal-info {
        padding: 16px;
        margin-top: 20px;
    }
    
    .modal-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .login-modal.active {
        padding: 12px;
    }
    
    .modal-content {
        padding: 20px 16px;
        margin: 0 auto;
        max-width: 360px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        border-radius: 16px;
    }
    
    .modal-header {
        margin-bottom: 20px;
    }
    
    .modal-icon {
        width: 64px;
        height: 64px;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-form input {
        padding: 12px 12px 12px 40px;
    }
    
    .modal-form .input-wrapper i {
        left: 14px;
        font-size: 14px;
    }
    
    .btn-modal-login {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .loading-steps {
        padding: 12px;
    }
    
    .step-item {
        padding: 8px 10px;
        margin-bottom: 8px;
    }
    
    .modal-info {
        padding: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .login-modal.active {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        max-height: calc(100vh - 40px);
        max-width: 500px;
        width: calc(100vw - 20px);
        overflow-y: auto;
        margin: 0 auto;
    }
    
    .modal-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .modal-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 8px;
    }
    
    .modal-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .modal-header p {
        font-size: 13px;
    }
}

/* Hero User Info */
.hero-user-info {
    margin-top: 25px;
    animation: fadeInUp 0.5s ease-out;
    position: relative;
    z-index: 10;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-user-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
    max-width: 600px;
    transition: all 0.3s;
}

.hero-user-card:hover {
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.hero-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #00d4ff;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
    flex-shrink: 0;
}

.hero-user-details {
    flex: 1;
    min-width: 0;
}

.hero-username {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

/* Special styling for verification status */
.hero-username:has-text("User Under Verification"),
.user-name:has-text("User Under Verification") {
    color: #ffa726;
    font-style: italic;
}

/* Alternative approach using content detection */
.hero-username[data-status="verification"],
.user-name[data-status="verification"] {
    color: #ffa726;
    font-style: italic;
    position: relative;
}

.hero-username[data-status="verification"]::after,
.user-name[data-status="verification"]::after {
    content: " 🔍";
    font-size: 0.8em;
}

.hero-player-id {
    font-size: 14px;
    color: #00d4ff;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.hero-stat:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.hero-stat i {
    font-size: 15px;
    color: #00d4ff;
}

.hero-add-balance {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
}

.hero-add-balance:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #00aad4 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.hero-add-balance i {
    color: #fff;
}

.btn-modal-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading Steps Animation */
.loading-steps {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    opacity: 0.3;
    transition: all 0.3s;
}

.step-item.active {
    opacity: 1;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
}

.step-item.completed {
    opacity: 0.7;
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4caf50;
}

.step-item i {
    font-size: 18px;
    color: #8892b0;
    min-width: 20px;
}

.step-item.active i {
    color: #00d4ff;
    animation: pulse 1s infinite;
}

.step-item.completed i {
    color: #4caf50;
}

.step-item span {
    flex: 1;
    color: #8892b0;
    font-size: 14px;
}

.step-item.active span {
    color: #fff;
    font-weight: 500;
}

.step-item.completed span {
    color: #4caf50;
}

.step-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #00d4ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.step-item.active .step-loader {
    display: block;
}

.step-details {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-size: 12px;
    color: #00d4ff;
    display: none;
}

.step-item.active .step-details {
    display: block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.api-response {
    display: none;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.response-header {
    background: rgba(0, 212, 255, 0.2);
    padding: 10px 15px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.response-content {
    padding: 15px;
    color: #4caf50;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    max-height: 300px;
    overflow-y: auto;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.modal-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
    border-radius: 5px;
}

.modal-info p {
    color: #fff;
    font-size: 13px;
    margin: 5px 0;
}

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

@keyframes slideUp {
    from {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal backdrop animation */
.login-modal {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

/* Form hint styling */
.form-hint {
    display: block;
    color: #a0aec0;
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 0;
    padding-left: 4px;
    font-style: italic;
}

/* Email group animation */
#emailGroup {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

#emailGroup.show {
    opacity: 1;
    max-height: 120px;
    margin-bottom: 24px;
}

/* Enhanced focus states for accessibility */
.modal-form input:focus,
.btn-modal-login:focus,
.modal-close:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Loading state for button */
.btn-modal-login.loading {
    position: relative;
    color: transparent;
}

.btn-modal-login.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Windows Watermark */
.windows-watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-align: right;
    pointer-events: none;
    z-index: 9999;
}

.windows-watermark p {
    margin: 2px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-section {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .game-info {
        flex-direction: column;
        text-align: center;
    }
    
    .player-id-section {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Base Container */
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px 5px;
    }
    
    /* Game Title */
    .game-title {
        font-size: 20px;
    }
    
    /* Product Card Mobile */
    .product-card {
        padding: 15px 12px;
        min-height: 260px;
        border-radius: 12px;
    }
    
    .product-icon .uc-icon {
        width: 70px;
        height: 70px;
    }
    
    .uc-info {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .uc-amount {
        font-size: 22px;
    }
    
    .uc-bonus {
        font-size: 18px;
    }
    
    .price-main {
        font-size: 18px;
    }
    
    .price-label {
        font-size: 12px;
    }
    
    .order-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Badge Mobile */
    .badge-popular {
        padding: 10px 20px;
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .filter-header {
        font-size: 14px;
    }
    
    .filter-header h2 {
        font-size: 16px;
    }
    
    .filter-option {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Tabs Mobile */
    .tabs-navigation {
        gap: 8px;
        padding: 10px 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .tabs-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 12px;
        white-space: nowrap;
        min-width: auto;
        flex-shrink: 0;
    }
    
    .tab-btn i {
        font-size: 13px;
        margin-right: 5px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 15px 0;
        min-height: auto;
    }
    
    .hero-background img {
        height: 200px;
    }
    
    .game-info {
        gap: 15px;
        padding: 15px 0;
    }
    
    .game-icon img {
        width: 60px;
        height: 60px;
    }
    
    .game-details {
        width: 100%;
    }
    
    .hero-user-info {
        width: 100%;
    }
    
    .hero-user-card {
        padding: 12px;
        flex-direction: row;
        gap: 12px;
    }
    
    .hero-avatar {
        width: 50px;
        height: 50px;
    }
    
    .hero-username {
        font-size: 15px;
    }
    
    .hero-player-id {
        font-size: 11px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .hero-stat {
        font-size: 12px;
        width: 100%;
    }
    
    .hero-add-balance {
        font-size: 12px;
    }
    
    .btn-player-id {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Slider Mobile */
    .slider-section {
        margin-bottom: 20px;
    }
    
    .slider-container {
        border-radius: 12px;
        height: 180px;
    }
    
    .slide img {
        height: 180px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Modal Mobile */
    .modal-content {
        padding: 24px 16px;
        border-radius: 16px;
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        margin-bottom: 20px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-header p {
        font-size: 13px;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input {
        padding: 12px 40px;
        font-size: 14px;
    }
    
    .btn-modal-login {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Event Products Mobile */
    .event-product {
        padding: 15px;
    }
    
    .product-image {
        height: 180px;
        border-radius: 10px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .event-order-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    /* Main Content */
    .main-content {
        padding: 15px 0;
    }
    
    .products-section {
        gap: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .products-grid {
        gap: 12px;
        padding: 8px;
    }
    
    .product-card {
        padding: 12px 10px;
        min-height: 240px;
    }
    
    .uc-amount {
        font-size: 20px;
    }
    
    .price-main {
        font-size: 16px;
    }
    
    .order-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .badge-popular {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 15px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .modal-content {
        max-height: calc(100vh - 20px);
    }
}

/* Tablet Responsive */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 15px;
    }
    
    .product-card {
        padding: 18px 14px;
    }
    
    .container {
        padding: 0 15px;
    }
}
