* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff !important;
}

/* FORÇA FUNDO BRANCO EM TUDO */
html, body, div, section, header, main, article, aside, nav, footer {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* FORÇA FUNDO BRANCO EM TODAS AS CLASSES */
.header, .image-carousel, .banners, .game-selection, .login-section, 
.recharge-section, .special-offers, .payment-section, .purchase-summary,
.cart-section, .customer-section {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* EXCEÇÃO: Botões devem manter suas cores originais */
.view-more-btn, .buy-now-btn, .recharge-buy-btn, .login-btn, .add-product-btn {
    background: linear-gradient(135deg, #ff0000, #ff3333) !important;
    color: white !important;
}

/* ========== ANIMAÇÕES E EFEITOS VISUAIS ========== */

/* Animação de entrada suave para todos os elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Aplicar animações aos elementos */
.header {
    animation: slideInFromTop 0.8s ease-out;
}

.image-carousel {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.banners {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.game-selection {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.login-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.recharge-section {
    animation: fadeInUp 1s ease-out 1s both;
}

.special-offers {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.payment-section {
    animation: fadeInUp 1s ease-out 1.4s both;
}

.purchase-summary {
    animation: fadeInUp 1s ease-out 1.6s both;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container principal para responsividade */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Melhorar performance em mobile */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Prevenir zoom em inputs em iOS */
input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Melhorar scroll em mobile */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 0;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #ff0000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: -1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    min-height: 60px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.header-content:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.header-center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.garena-text {
    font-size: 12px;
    color: #ff0000;
    font-weight: bold;
    line-height: 1;
}

.header-divider {
    width: 1px;
    height: 20px;
    background-color: #e0e0e0;
    margin: 0 4px;
}

.header-text {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.header-text:hover {
    color: #ff0000;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
    animation: textPulse 0.6s ease-in-out;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    }
}

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

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
}

.user-icon svg {
    width: 20px;
    height: 20px;
}

.garena-logo {
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.3));
    border-radius: 8px;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.garena-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.5));
    animation: pulse 0.6s ease-in-out;
}

.header-title {
    font-size: 16px;
    font-weight: bold;
    color: #ff0000;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-title:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
    animation: glow 1s ease-in-out infinite;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    margin-left: 5px;
}

.header-subtitle {
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
}

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

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #ff0000, #ff6666);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.hamburger-menu:hover span {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
}

/* Image Carousel */
.image-carousel {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 0;
    height: 400px;
    overflow: hidden;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.1));
    pointer-events: none;
    z-index: 1;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 0 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background: #ff0000;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    animation: pulse 0.6s ease-in-out;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.carousel-indicator.active,
.indicator.active {
    background-color: #ff0000;
}

/* Banners */
.banners {
    background-color: #ffffff;
    padding: 20px 0;
    width: 100%;
}

.banners-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
    width: 100%;
}

.banner {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.banner h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 14px;
    opacity: 0.9;
}

/* Game Selection */
.game-selection {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

.game-selection-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff0000;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff6666);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.games-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 0, 0.1);
    min-width: 220px;
    max-width: 280px;
    width: 100%;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
    animation: float 2s ease-in-out infinite;
}

.game-card.selected {
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    transform: scale(1.05);
}


.game-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.game-name {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.hot-label {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #ff0000 !important;
    color: white !important;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

.game-logo {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    padding: 2px;
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Login Section */
.login-section {
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.login-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.login-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff0000;
}

.login-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    max-width: 500px;
    margin: 0 auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-container input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-container input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    transform: translateY(-1px);
}


.login-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 0.6s ease-in-out;
}

.help-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
    cursor: help;
}

.login-alternative {
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-size: 14px;
}

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

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #42a5f5, #1877f2);
    animation: facebookPulse 0.6s ease-in-out;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #c13584, #e4405f);
    animation: instagramPulse 0.6s ease-in-out;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
    animation: twitterPulse 0.6s ease-in-out;
}

.social-btn.vk {
    background: linear-gradient(135deg, #0077ff, #0056cc);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn.vk:hover {
    background: linear-gradient(135deg, #0056cc, #0077ff);
    animation: vkPulse 0.6s ease-in-out;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-btn:hover .social-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@keyframes facebookPulse {
    0%, 100% { transform: scale(1.15) translateY(-3px); }
    50% { transform: scale(1.2) translateY(-5px); }
}

@keyframes instagramPulse {
    0%, 100% { transform: scale(1.15) translateY(-3px); }
    50% { transform: scale(1.2) translateY(-5px); }
}

@keyframes googlePulse {
    0%, 100% { transform: scale(1.15) translateY(-3px); }
    50% { transform: scale(1.2) translateY(-5px); }
}

@keyframes twitterPulse {
    0%, 100% { transform: scale(1.15) translateY(-3px); }
    50% { transform: scale(1.2) translateY(-5px); }
}

@keyframes vkPulse {
    0%, 100% { transform: scale(1.15) translateY(-3px); }
    50% { transform: scale(1.2) translateY(-5px); }
}

/* ========== RODAPÉ ========== */
.footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright {
    color: #333333;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff0000;
}

.separator {
    color: #333333;
    font-size: 14px;
    margin: 0 4px;
}

/* ========== SEÇÕES DE COMPRA E RESGATE ========== */
.buy-section {
    display: block;
}

.redeem-section {
    display: none;
    margin-top: 20px;
}

.redeem-form {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.redeem-form h3 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.redeem-form p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.key-input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.key-input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.redeem-btn {
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.redeem-btn:hover {
    background: linear-gradient(135deg, #ff3333, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.redeem-btn.disabled {
    background: linear-gradient(135deg, #cccccc, #999999);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.redeem-btn.disabled:hover {
    background: linear-gradient(135deg, #cccccc, #999999);
    transform: none;
    box-shadow: none;
}

.login-required-message {
    color: #ff6b6b;
    font-size: 12px;
    margin: 8px 0 0 0;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

.login-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.login-error {
    background-color: #ffe6e6;
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.login-error p {
    color: #ff0000;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 0, 0, 0.2);
}

.login-status.success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.social-login {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.social-login p {
    margin-bottom: 15px;
    color: #ccc;
}

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.social-btn.google {
    background: linear-gradient(135deg, #db4437, #ea4335);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn.google:hover {
    background: linear-gradient(135deg, #ea4335, #db4437);
    animation: googlePulse 0.6s ease-in-out;
}

.social-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-btn.vk {
    background-color: #4c75a3;
    color: white;
}

/* Popup Overlay */
.popup-overlay-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 15px;
}

.popup-content-login {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    border: 2px solid #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.popup-content-login h3 {
    color: #ff0000;
    margin-bottom: 15px;
    font-size: 20px;
}

.popup-content-login p {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.popup-close-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.popup-close-btn:hover {
    background-color: #cc0000;
}

/* Recharge Section */
.recharge-section {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

.recharge-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.recharge-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.recharge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.recharge-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.recharge-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.recharge-price {
    font-size: 18px;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 15px;
}

.recharge-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recharge-btn:hover {
    background-color: #cc0000;
}

/* Special Offers */
.special-offers {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

.special-offers h2 {
    text-align: center;
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 0;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 0, 0, 0.1);
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
}

.offer-card.hidden {
    display: none !important;
}

.offer-card.visible {
    display: flex !important;
}

.offer-card {
    flex-direction: column;
    height: 100%;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
    animation: float 2s ease-in-out infinite;
}


.offer-card.visible {
    display: block;
    opacity: 1;
    max-height: 500px;
}

.offer-card.hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.offer-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.4s ease;
    background-color: #f8f9fa;
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Imagens específicas que precisam ser exibidas completamente */
.offer-image[alt*="Soldado Vulcânico"],
.offer-image[alt*="Máscara da Caveira"],
.offer-image[alt*="Mascara da Caveira"] {
    object-fit: contain;
    background-color: #f0f0f0;
    padding: 10px;
}

/* Imagens que podem ser cortadas para melhor apresentação */
.offer-image[alt*="Assinatura Mensal"],
.offer-image[alt*="Passe Booyah"] {
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
    padding: 0;
}

.offer-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: bold;
    line-height: 1.3;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    color: #ff0000;
    font-weight: bold;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.add-product-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.add-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.add-product-btn:hover::before {
    left: 100%;
}

.add-product-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 0.6s ease-in-out;
}

/* Botão COMPRAR AGORA */
.buy-now-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff0000, #ff3333) !important;
    color: white !important;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-now-btn:hover::before {
    left: 100%;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 0.6s ease-in-out;
}

/* Seção de compra de recarga */
.recharge-buy-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recharge-buy-btn {
    background: linear-gradient(135deg, #ff0000, #ff3333) !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.recharge-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.recharge-buy-btn:hover::before {
    left: 100%;
}

.recharge-buy-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 0.6s ease-in-out;
}

.recharge-buy-btn.disabled {
    background: linear-gradient(135deg, #cccccc, #999999) !important;
    color: #666666 !important;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.recharge-info {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Seção Delta Force */
.delta-force-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-top: 3px solid #0066cc;
}

.delta-force-section .section-header h2 {
    color: #0066cc;
}

.delta-force-section .diamond-option {
    border-color: #0066cc;
}

.delta-force-section .diamond-option:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.delta-force-section .diamond-option.selected {
    border-color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    background-color: #f0f8ff;
}

.info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    background: linear-gradient(135deg, #ff0000, #ff3333) !important;
    color: white !important;
    border: none !important;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5) !important;
    animation: pulse 0.6s ease-in-out;
}

/* Forçar visibilidade dos elementos filhos do botão */
.view-more-btn span {
    color: white !important;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

#viewMoreText {
    color: white !important;
    background: transparent !important;
}

#viewMoreIcon {
    color: white !important;
    background: transparent !important;
}

/* Payment Section */
.payment-section {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.payment-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    min-width: 200px;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.payment-card.selected {
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.promo-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.payment-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 15px;
}

.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-info .price {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
}

.payment-info .bonus {
    font-size: 14px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bonus-diamond {
    width: 16px;
    height: 16px;
}

/* Purchase Summary */
.purchase-summary {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

.summary-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.diamond-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.diamond-icon {
    width: 40px;
    height: 40px;
}

.diamond-summary span {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.total-price {
    font-size: 24px;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 30px;
}

.cart-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-btn {
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-btn:hover::before {
    left: 100%;
}

.buy-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    animation: pulse 0.6s ease-in-out;
}

.check-icon {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .diamond-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .login-error p {
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .copyright {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .separator {
        font-size: 13px;
    }
    
    .redeem-form {
        padding: 20px;
    }
    
    .redeem-form h3 {
        font-size: 20px;
    }
    
    .redeem-form p {
        font-size: 14px;
    }
    
    .key-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .redeem-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .login-required-message {
        font-size: 11px;
    }
    
    .header-content {
        max-width: 500px;
        padding: 15px 20px;
        min-height: 70px;
    }
    
    .header-title {
        font-size: 14px;
    }
    
    .header-subtitle {
        font-size: 14px;
    }
    
    .garena-logo {
        height: 30px;
    }
    
    .logo-container {
        gap: 1px;
    }
    
    .header-center {
        margin-left: 0px;
    }
    
    .hamburger-menu span {
        width: 20px;
        height: 2px;
    }
    
    .image-carousel {
        height: 300px;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-btn.prev {
        left: 15px;
    }
    
    .carousel-btn.next {
        right: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-slide {
        padding: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .special-events {
        padding: 30px 15px;
    }
    
    .event-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .event-full-image {
        height: 250px;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin: 0 auto 20px auto;
    }
    
    .games-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .game-card {
        max-width: 160px;
        min-width: 140px;
        flex: 1;
    }
    
    .game-image {
        width: 60px;
        height: 60px;
    }
    
    .hot-label {
        top: -6px;
        left: -6px;
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .game-logo {
        width: 20px;
        height: 20px;
        bottom: 6px;
        right: 6px;
    }
    
    .login-form {
        padding: 20px;
    }
    
    .popup-content-login {
        padding: 20px;
        margin: 15px;
    }
    
    .recharge-options {
        flex-direction: column;
        align-items: center;
    }
    
    .recharge-option {
        width: 100%;
        max-width: 200px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .cart-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .buy-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .diamond-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .login-btn {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        border-radius: 10px;
    }
    
    .login-error p {
        font-size: 13px;
    }
    
    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .copyright {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .separator {
        font-size: 12px;
    }
    
    .redeem-form {
        padding: 15px;
    }
    
    .redeem-form h3 {
        font-size: 18px;
    }
    
    .redeem-form p {
        font-size: 13px;
    }
    
    .key-input {
        padding: 10px;
        font-size: 13px;
    }
    
    .redeem-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .login-required-message {
        font-size: 10px;
    }
    
    .header-content {
        max-width: 400px;
        padding: 12px 15px;
        min-height: 60px;
    }
    
    .header-title {
        font-size: 12px;
    }
    
    .header-subtitle {
        font-size: 12px;
    }
    
    .garena-logo {
        height: 25px;
    }
    
    .logo-container {
        gap: 0px;
    }
    
    .header-center {
        margin-left: 0px;
    }
    
    .hamburger-menu span {
        width: 18px;
        height: 2px;
    }
    
    .image-carousel {
        height: 250px;
    }
    
    .carousel-container {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .carousel-slide {
        padding: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .banner-text h1 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .login-form {
        padding: 15px;
    }
    
    .popup-content-login {
        padding: 15px;
        margin: 10px;
    }
    
    .recharge-options {
        gap: 15px;
    }
    
    .recharge-option {
        min-width: 120px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .offer-card {
        min-height: 200px;
    }
    
    .offer-image {
        height: 120px;
    }
    
    .offer-content {
        padding: 15px;
    }
    
    .offer-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .buy-now-btn {
        padding: 10px;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .payment-card {
        min-width: auto;
        width: 100%;
    }
    
    .special-events {
        padding: 20px 10px;
    }
    
    .event-banner {
        padding: 15px;
    }
    
    .event-full-image {
        height: 200px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0 auto 15px auto;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 400px) {
    .special-events {
        padding: 15px 8px;
    }
    
    .event-full-image {
        height: 180px;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        margin: 0 auto 10px auto;
        border-radius: 15px;
    }
    
    .event-image {
        border-radius: 15px;
    }
    
    .game-card {
        min-width: 140px;
        max-width: 160px;
        padding: 15px 10px;
        flex: 1;
    }
    
    .game-image {
        width: 50px;
        height: 50px;
    }
    
    .hot-label {
        top: -5px;
        left: -5px;
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .game-logo {
        width: 18px;
        height: 18px;
        bottom: 5px;
        right: 5px;
    }
}

/* Main Banner */
.main-banner {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

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

.banner-text h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Special Events */
.special-events {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.special-events h2 {
    text-align: center;
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.event-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ff0000;
    text-align: center;
}

/* Container da imagem que preenche a tela */
.event-full-image {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.event-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.event-text h3 {
    color: #ff0000;
    font-size: 18px;
    margin-bottom: 10px;
}

.event-text p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 5px;
}

.event-text small {
    color: #ccc;
    font-size: 12px;
}

.event-footer {
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-number {
    background: linear-gradient(135deg, #ff0000, #ff3333);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.section-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff3333, #ff0000);
}

.section-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.section-number:hover::before {
    opacity: 1;
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.section-header h2 {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.tab {
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab.active {
    background-color: #ffffff;
    border-color: #ff0000;
    color: #000000;
}

.tab:hover {
    border-color: #ff0000;
}

.tab.active:hover {
    border-color: #ff0000;
}

/* Payment Info */
.payment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.reset-btn {
    padding: 8px 16px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.reset-btn:hover {
    background-color: #cc0000;
}

/* Diamond Grid */
.diamond-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.diamond-option {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.diamond-option:hover {
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.diamond-option.selected {
    border-color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    background-color: #fff5f5;
}

.diamond-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.amount {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

/* Estilos para informações de preço */
.price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 5px;
}

.old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 14px;
    color: #ff0000;
    font-weight: bold;
}

/* Estilo para opção em destaque */
.diamond-option.highlight {
    border-color: #ff0000;
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.diamond-option.highlight:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Estrela de destaque */
.star-highlight {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 20px;
    background: #ff0000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 280px;
    transition: all 0.3s ease;
}

.floating-cart-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-diamond-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-diamond-icon {
    width: 20px;
    height: 20px;
}

.floating-diamond-info span {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.floating-total {
    flex: 1;
}

.floating-total span {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.floating-buy-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.floating-buy-btn:hover {
    background-color: #cc0000;
}

.floating-buy-btn .check-icon {
    font-size: 12px;
}

/* Shopping Cart Section */
.cart-section {
    background-color: #ffffff;
    border-top: 3px solid #ff0000;
    padding: 30px 0;
    margin-top: 40px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.cart-header h2 {
    color: #000000;
    font-size: 24px;
    margin: 0;
}

.close-cart-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-cart-btn:hover {
    background-color: #cc0000;
}

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    color: #000000;
    font-size: 18px;
    margin: 0 0 5px 0;
}

.cart-item-info p {
    color: #666666;
    font-size: 16px;
    margin: 0;
}

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

.cart-item-controls button {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-item-controls button:hover {
    background-color: #cc0000;
}

.cart-item-controls span {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background-color: #f44336 !important;
}

.remove-btn:hover {
    background-color: #d32f2f !important;
}

.empty-cart {
    text-align: center;
    color: #666666;
    font-size: 18px;
    padding: 40px;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.cart-total {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.proceed-checkout-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.proceed-checkout-btn:hover {
    background-color: #cc0000;
}

.view-cart-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.view-cart-btn:hover {
    background-color: #45a049;
}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Customer Data Section */
.customer-section {
    background-color: #ffffff;
    border-top: 3px solid #ff0000;
    padding: 30px 0;
}

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.customer-header h2 {
    color: #000000;
    font-size: 24px;
    margin: 0;
}

.close-customer-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-customer-btn:hover {
    background-color: #cc0000;
}

.customer-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.form-group input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0000;
}

.generate-pix-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.generate-pix-btn:hover {
    background-color: #cc0000;
}

/* PIX Modal */
.pix-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.pix-modal-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.pix-header h2 {
    color: #000000;
    font-size: 24px;
    margin: 0;
}

.close-pix-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-pix-btn:hover {
    background-color: #cc0000;
}

.pix-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.pix-amount {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.pix-status {
    font-size: 16px;
    font-weight: bold;
    color: #ff9800;
}

.pix-qr-code {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #666666;
}

.pix-code-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pix-code-section label {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.pix-code-container {
    display: flex;
    gap: 10px;
}

.pix-code-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f8f8f8;
}

.copy-pix-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.copy-pix-btn:hover {
    background-color: #45a049;
}

.pix-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.check-payment-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.check-payment-btn:hover {
    background-color: #45a049;
}

.cancel-payment-btn {
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cancel-payment-btn:hover {
    background-color: #d32f2f;
}

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

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

/* Responsive Floating Cart */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        width: auto;
    }
    
    .floating-cart-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .floating-diamond-info {
        justify-content: center;
    }
    
    .floating-buy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .floating-cart {
        padding: 12px;
    }
    
    .floating-cart-content {
        gap: 8px;
    }
    
    .floating-diamond-info span,
    .floating-total span {
        font-size: 12px;
    }
    
    .floating-buy-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .diamond-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .diamond-option {
        padding: 8px;
        min-height: 60px;
    }
    
    .diamond-icon {
        width: 20px;
        height: 20px;
    }
    
    .amount {
        font-size: 12px;
    }
    
    .login-btn {
        padding: 10px 14px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
        border-radius: 8px;
    }
}
