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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 50%, #ffd6e7 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.95) 0%, rgba(255, 20, 147, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin: 0;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu a:hover {
    color: #ffc0d9;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.nav-menu a.active {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input {
    border: none;
    padding: 0.7rem 1rem;
    outline: none;
    background: transparent;
    min-width: 200px;
    cursor: text;
}

.search-btn {
    background: #ff1493;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #d1086f;
}

.btn-login, .btn-register {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-register:hover {
    background: white;
    color: #ff1493;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.hero-games {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-game-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-game-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
}

.hero-game-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ff1493;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.hero-game-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-game-card span {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* Different colors for each game card */
.hero-game-card.ml {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.hero-game-card.ff {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.hero-game-card.pubg {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

/* Payment Methods Section */
.payment-methods {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.payment-methods h3 {
    color: #ff1493;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3), 0 0 0 1px rgba(255, 20, 147, 0.2);
}

.payment-item img {
    height: 60px;
    width: 100px;
    object-fit: contain;
}

.payment-more {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Marquee Section */
.marquee-section {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.95) 0%, rgba(255, 20, 147, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    margin: 0;
    position: relative;
}

.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.marquee-container {
    display: flex;
    align-items: center;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Popular Games Section */
.popular-games {
    background: linear-gradient(135deg, rgba(255, 224, 236, 0.8) 0%, rgba(255, 192, 217, 0.8) 100%);
    padding: 2.5rem 0;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.popular-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    color: #ff1493;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.games-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.games-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.game-card-small, a.game-card-small {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    color: #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.game-card-small::before, a.game-card-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card-large, a.game-card-large {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    color: #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

a.game-card-large:hover, a.game-card-small:hover {
    color: #333;
}

.game-card-large::before, a.game-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover, .game-card-small:hover, a.game-card-small:hover, .game-card-large:hover, a.game-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.4);
}

.game-card-small:hover, a.game-card-small:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3), 0 0 0 1px rgba(255, 20, 147, 0.2);
}

.game-card-small:hover::before, a.game-card-small:hover::before {
    opacity: 1;
}

.game-card-large:hover, a.game-card-large:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3), 0 0 0 1px rgba(255, 20, 147, 0.2);
}

.game-card-large:hover::before, a.game-card-large:hover::before {
    opacity: 1;
}

.game-image {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.game-card-small .game-image {
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 100%);
}

.game-card-large .game-image {
    height: 180px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 100%);
}

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

.game-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.game-card-small .game-info h4 {
    font-size: 0.9rem;
    color: #ff1493;
}

.game-card-large .game-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ff1493;
}

.game-info p {
    font-size: 0.8rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.game-card-small .game-info p {
    font-size: 0.7rem;
    color: #666;
}

.game-card-large .game-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Game List Section */
.game-list {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 3rem 0;
    margin-top: 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.game-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Category Navigation */
.category-nav {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #ff1493;
    border: 2px solid rgba(255, 20, 147, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    border-color: transparent;
}

/* Products Section */
.products {
    background: white;
    padding: 3rem 0;
    min-height: 400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #ffe0ec 0%, #ffc0d9 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.product-image {
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.product-info h4 {
    color: #ff1493;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.badge {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Cart Footer */
.cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -5px 20px rgba(255, 20, 147, 0.3);
    z-index: 1000;
}

.cart-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cart-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-order {
    background: white;
    color: #ff1493;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Chat CS Button */
.chat-cs {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    color: #ff1493;
    border: 2px solid #ff1493;
    padding: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    z-index: 1001;
}

.chat-cs:hover {
    background: #ff1493;
    color: white;
    transform: translateY(-3px);
}

.chat-cs img {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-bottom: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 300px;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
}

.help-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.help-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.help-item strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.help-item span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.help-item a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.help-item a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateX(5px);
}

.whatsapp-link img {
    width: 20px;
    height: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.guarantee-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guarantee-info p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-left p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.security-badge img {
    height: 30px;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
}

.search-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-modal-body {
    padding: 2rem;
}

.search-modal-body input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #ff1493;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-modal-body input:focus {
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
}

.search-results {
    margin-top: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #ffe0ec 0%, #ffc0d9 100%);
    transform: translateX(5px);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1rem;
}

.search-result-info h4 {
    margin: 0;
    color: #ff1493;
    font-size: 1rem;
    font-weight: 600;
}

.search-result-info p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.no-results {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-menu a {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .search-bar input {
        min-width: 150px;
    }

    .btn-login, .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-grid {
        gap: 1rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .category-buttons {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .cart-footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cart-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .chat-cs {
        bottom: 120px;
        right: 10px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card, .game-card {
    animation: fadeIn 0.5s ease-out;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Selected Product State */
.product-card.selected {
    border: 3px solid #ff1493;
    transform: scale(1.05);
}

.product-card.selected::before {
    content: 'â';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff1493;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
