/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

:root {
    /* Cores base */
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: var(--orange-600);
    --zinc-800: #151516;
    --zinc-900: #09090b;
    --zinc-950: #09090b;
    --text: #f8fafc;
    --text-secondary: #94a3b8;

    /* Header */
    --header-bg: var(--zinc-900);
    --header-border: var(--orange-600);
    
    /* Hero Section */
    --hero-bg: #1f1f1f;
    --hero-text: var(--text);
    --hero-gradient: linear-gradient(135deg, rgba(235, 0, 0, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    --hero-button-glow: 0 0 1.04vw rgba(235, 0, 0, 0.5);
    
    /* Features Section */
    --features-bg: #0a0a0a;
    --features-card-bg: transparent;
    --features-icon-color: var(--orange-500);
    --features-text: var(--text);
    
    /* Technology Section */
    --tech-bg: #000000;
    --tech-card-bg: var(--orange-600);
    
    /* Products Section */
    --products-bg: #0a0a0a;
    --products-card-bg: var(--zinc-900);
    --products-border: var(--orange-600);
    
    /* Modal */
    --modal-bg: rgba(0, 0, 0, 0.8);
    --modal-content-bg: var(--zinc-900);
    --modal-border: var(--orange-600);
    
    /* Buttons */
    --btn-primary-bg: var(--orange-600);
    --btn-primary-hover: var(--orange-700);
    --btn-secondary-bg: var(--zinc-800);
    --btn-secondary-hover: var(--zinc-900);

    /* Adicionar nas suas variveis root */
    --gradient-text: linear-gradient(
        45deg,
        #ff6b00 0%,    /* Laranja mais vibrante */
        #ffa500 20%,   /* Laranja dourado */
        #ffd700 40%,   /* Dourado brilhante */
        #ffb700 60%,   /* Dourado âmbar */
        #ff8c00 80%,   /* Laranja escuro */
        #ff6b00 100%   /* Volta ao laranja vibrante */
    );

    /* Sistema de Grid Base - Ajustado para melhor responsividade */
    --container-max-width: 90%;
    --container-padding: max(1rem, 3%);
    
    /* Breakpoints - Com valores de referência em pixels para facilitar media queries */
    --mobile: 480px; /* ~30em */
    --tablet: 768px; /* ~48em */
    --desktop: 1024px; /* ~64em */
    --large: 1280px; /* ~80em */
    
    /* Espaçamentos base em unidades rem para melhor responsividade */
    --base-unit: 0.25rem; 
    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Fontes em unidades rem para melhor responsividade */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;

    /* Bordas em valores fixos para consistência */
    --border-thin: 1px;
    --border-regular: 2px;
    --border-thick: 3px;

    /* Border radius em valores fixos para consistência */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body:active {
    cursor: url('images/cursor.png') 16 16, auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Header Styles */
.main-header {
    background-color: var(--header-bg);
    padding: 0;
    border-bottom: var(--border-regular) solid var(--header-border);
    position: relative;
    width: 100%;
    z-index: 300;
    height: 70px;
    margin-bottom: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: var(--zinc-900);
    position: relative;
    gap: 0;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* Logo posicionado adequadamente */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    margin: 0 0 0 1rem;
    padding: 0;
    position: relative;
    height: 45px;
    z-index: 10;
    line-height: 0; /* Evita espaço extra */
}

/* Restaurando os links do logo */
.logo-wrapper a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    width: auto;
    height: 70px; /* Altura aumentada para o logo ser mais visível */
    object-fit: contain;
    margin-top: 8px; /* Ajuste fino para posicionamento vertical */
    max-width: 200px; /* Limita a largura máxima */
}

.logo-text {
    font-size: calc(var(--font-md) * 1.2);
    color: white;
    margin-left: 0.5rem;
}

/* Contador de drops centralizado e compacto */
.drop-counter-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
}

.drop-counter, .missed-drops {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.4rem;
    background: var(--zinc-800);
    border: var(--border-thin) solid var(--orange-500);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: var(--font-xs);
    height: auto;
    min-width: 110px;
    justify-content: center;
}

.ranking-btn {
    height: auto;
    padding: 0.2rem 0.6rem;
    font-size: var(--font-xs);
    background: var(--zinc-800);
    border: var(--border-thin) solid var(--orange-500);
    border-radius: var(--radius-sm);
    color: var(--text);
    min-width: 110px;
}

/* Botões na direita */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 1rem 0 0;
    padding: 0;
    height: 100%;
}

.nav-buttons a, 
.nav-buttons button {
    border-top: 3px solid #00ff22 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    background-color: var(--orange-600) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    text-decoration: none !important;
}

.nav-buttons a:hover, 
.nav-buttons button:hover {
    background-color: var(--orange-700) !important;
}

/* Ícones */
.lucide {
    width: 1rem;
    height: 1rem;
}

/* Ajuste específico para o contador de drops */
.start-btn {
    padding: 0.2rem 0.4rem;
    font-size: var(--font-xs);
    height: auto;
}

/* Hero Section */
.hero {
    margin-top: 45px; /* Ajustado para a altura do header */
    min-height: calc(100vh - 45px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: var(--border-regular) solid var(--orange-600);
}

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

.hero-video {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--spacing-md);
    max-width: 800px;
    width: 100%;
}

.subtitle {
    font-size: var(--font-lg);
    color: white;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Ajuste dos botões do hero */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    width: 100%;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-lg);
    line-height: 1.5;
    white-space: nowrap;
}

/* Ajuste específico para o botão Ver Tutorial */
.hero-buttons .btn-secondary {
    font-size: var(--font-lg);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 2px solid #00ff2a;
}

.hero-buttons .btn-secondary i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Personagens */
.character {
    position: absolute;
    width: 200px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
    display: none; /* Oculta em dispositivos móveis */
}

/* CS2 Characters */
.cs-ct {
    background-image: url('images/cs-ct.png');
    left: 10%;
    bottom: 0;
    animation: characterMove 3s ease-in-out infinite, characterAppear 1s ease-out;
}

.cs-t {
    background-image: url('images/cs-t.png');
    right: 10%;
    bottom: 0;
    animation: characterMove 3s ease-in-out infinite 1.5s, characterAppear 1s ease-out 0.5s;
}

/* PUBG Characters */
.pubg-1 {
    background-image: url('images/pubg-1.png');
    left: 30%;
    bottom: 0;
    animation: characterMove 3s ease-in-out infinite 1s, characterAppear 1s ease-out 1s;
}

.pubg-2 {
    background-image: url('images/pubg-2.png');
    right: 30%;
    bottom: 0;
    animation: characterMove 3s ease-in-out infinite 2s, characterAppear 1s ease-out 1.5s;
}

/* Efeitos de tiro */
.bullet-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bullet-effects::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,165,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,0,0,0.1) 0%, transparent 50%);
    animation: muzzleFlash 2s infinite;
}

/* Animações */
@keyframes characterMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes muzzleFlash {
    0%, 100% {
        opacity: 0;
    }
    25%, 75% {
        opacity: 1;
    }
}

.subtitle {
    font-size: var(--font-xl);
    font-weight: 200;
    margin-bottom: var(--spacing-xl);
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease forwards;
}

/* Animações */
@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

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

@keyframes shine {
    from {
        transform: rotate(45deg) translate(-50%, -50%);
    }
    to {
        transform: rotate(45deg) translate(150%, 150%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--features-bg);
    border-bottom: var(--border-regular) solid var(--orange-600);
    position: relative;
    overflow: visible;
    margin-top: 0;
    z-index: 1;
    min-height: auto;
}

.features .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.features .grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: 0 auto;
    width: 100%;
}

.features .feature-card {
    background: rgba(21, 21, 21, 0.8);
    backdrop-filter: blur(8px);
    border: var(--border-thin) solid transparent;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
}

.features .section-title {
    font-size: var(--font-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--text);
    text-align: center;
}

.features .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-500);
}

.features .feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--orange-500);
    margin-bottom: var(--spacing-md);
}

.features .feature-card h3 {
    color: var(--text);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-lg);
}

.features .feature-card p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Technology Section */
.technology {
    padding: var(--spacing-xl) 0;
    background-color: black;
    text-align: center;
}

.technology .section-title {
    margin-bottom: var(--spacing-md);
}

.technology .container .grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: 0 auto;
    width: 100%;
}

.tech-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-card img {
    width: 100%;
    height: 288px; /* Aumentado mais 20% (de 240px para 288px) */
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer; /* Adicionar cursor pointer para indicar que é clicável */
    flex-shrink: 0; /* Impede que a imagem encolha */
}

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

.tech-card-content {
    background-color: var(--orange-600);
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
    flex-grow: 1; /* Permite que o conteúdo cresça para preencher o espaço disponível */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-card-content h3 {
    color: white;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-lg);
}

.tech-card-content p {
    color: white;
    font-size: var(--font-sm);
}

/* Media queries para responsividade */
@media (max-width: 1280px) {
    .container {
        max-width: 95%;
    }
    
    .features .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .technology .container .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tech-card img {
        height: 240px; /* Ajustado para telas menores */
    }
}

@media (max-width: 1024px) {
    :root {
        --font-2xl: 1.75rem;
        --font-xl: 1.25rem;
        --font-lg: 1.125rem;
    }
    
    .features .grid-auto-fit {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology .container .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-card img {
        height: 220px; /* Ajustado para telas menores */
    }
    
    .character {
        width: 150px;
        height: 200px;
    }
    
    .hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }
    
    .main-header {
        min-height: 45px;
        height: auto;
    }
    
    .header-content {
        flex-wrap: wrap;
        padding: 0.2rem 0;
        min-height: 45px;
    }
    
    .logo-wrapper {
        margin-left: 0.5rem;
        order: 1;
        width: auto;
        justify-content: flex-start;
        height: 40px;
    }
    
    .logo-image {
        height: 40px;
        margin-top: 0;
    }
    
    .nav-buttons {
        margin-right: 0.5rem;
        order: 2;
        width: auto;
        justify-content: flex-end;
        height: 40px;
    }
    
    .nav-buttons a,
    .nav-buttons button {
        border-top: 2px solid #00ff22 !important;
    }
    
    .drop-counter-wrapper {
        position: relative;
        left: 0;
        transform: none;
        order: 3;
        width: 100%;
        margin: 0.3rem auto;
    }
    
    .hero {
        margin-top: 80px; /* Ajustado para o header em telas pequenas */
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .character {
        display: none;
    }
    
    .features .grid-auto-fit {
        grid-template-columns: 1fr;
    }

    .technology .container .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr); /* Mantendo 3 por linha mesmo em tablets */
        gap: 0.75rem; /* Espaço menor entre os cards para caber melhor */
    }
    
    .tech-card img {
        height: 180px; /* Ajustado para telas de tablets */
    }
    
    .tech-card-content {
        padding: var(--spacing-sm);
    }
    
    .tech-card-content h3 {
        font-size: 0.9rem;
    }
    
    .tech-card-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-wrapper {
        width: 40%;
    }
    
    .nav-buttons {
        width: 60%;
    }

    .technology .container .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr); /* Mantendo 3 por linha mesmo em celulares */
        gap: 0.5rem;
    }
    
    .tech-card {
        margin-bottom: 0.75rem;
    }
    
    .tech-card img {
        height: 140px; /* Reduzido para telas de celulares */
    }
    
    .tech-card-content {
        padding: 0.5rem;
    }
    
    .tech-card-content h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .tech-card-content p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    :root {
        --font-2xl: 1.5rem;
        --font-xl: 1.125rem;
        --font-lg: 1rem;
        --font-md: 0.875rem;
        --font-sm: 0.75rem;
    }
    
    .technology .container .grid-auto-fit {
        grid-template-columns: repeat(3, 1fr); /* Mantendo 3 por linha */
        gap: 0.35rem;
    }
    
    .tech-card img {
        height: 110px; /* Reduzido ainda mais para telas muito pequenas */
    }
    
    .tech-card-content {
        padding: 0.4rem;
    }
    
    .tech-card-content h3 {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
    
    .tech-card-content p {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .hero {
        margin-top: 9rem;
        min-height: calc(100vh - 9rem);
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .nav-buttons {
        gap: 0.25rem;
    }
    
    .nav-buttons a,
    .nav-buttons button {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-width: auto;
    }
    
    .features, .technology {
        padding: var(--spacing-lg) 0;
    }
    
    .features .feature-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .features .feature-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .logo-image {
        width: 2.4rem;
        height: 2.4rem;
    }
    
    .header-content {
        padding: 0.5rem 0;
        flex-direction: column;
    }
    
    .logo-wrapper {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    
    .nav-buttons {
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }
}

/* Products Section - Redesign Elegante */
.products {
    border-top: 1px solid var(--orange-600);
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--zinc-900) 0%, var(--zinc-800) 100%);
    margin-top: 0;
    text-align: center;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 138, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.products .section-title {
    margin-bottom: 2rem;
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8a4c, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.product-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 138, 76, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(9, 9, 11, 0.6);
}

.game-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--zinc-800), var(--zinc-700));
    border: 1px solid rgba(255, 138, 76, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 138, 76, 0.2);
    border-color: rgba(255, 138, 76, 0.6);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 16px;
}

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

/* Overlay gradiente para melhor legibilidade */
.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::after {
    opacity: 1;
}

/* Responsivo mais elegante */
@media (min-width: 768px) and (max-width: 1023px) {
    .game-card {
        height: 200px;
    }
    
    .games-grid {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .game-card {
        height: 220px;
    }
    
    .games-grid {
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .game-card {
        height: 240px;
    }
    
    .products {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .game-card {
        height: 150px;
    }
    
    .games-grid {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .product-container {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .products .section-title {
        font-size: 2rem;
    }
    
    .price-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .price-tag {
        text-align: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .features-list li {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .product-container .btn-block {
        margin: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Pricing info elegante */
.pricing-info {
    padding: 2rem;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(5px);
}

.price-header {
    background: linear-gradient(135deg, rgba(255, 138, 76, 0.1), rgba(255, 107, 53, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 138, 76, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.price-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 138, 76, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.price-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.price-description {
    flex: 1;
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

.price-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0.5rem 0;
}

.price-tag {
    text-align: right;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8a4c, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Lista de features elegante */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.features-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 138, 76, 0.08), rgba(255, 107, 53, 0.04));
    border: 1px solid rgba(255, 138, 76, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.features-list li:hover {
    background: linear-gradient(135deg, rgba(255, 138, 76, 0.12), rgba(255, 107, 53, 0.06));
    border-color: rgba(255, 138, 76, 0.3);
    transform: translateY(-2px);
}

.features-list li i {
    color: #ff8a4c;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255, 138, 76, 0.3));
}

/* Botão de compra elegante */
.product-container .btn-block {
    margin: 1.5rem 2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8a4c, #ff6b35);
    border: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 138, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.product-container .btn-block::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;
}

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

.product-container .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 138, 76, 0.4);
}

.product-container .btn-block:active {
    transform: translateY(-1px);
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .product-container {
        max-width: 85%; /* Em telas menores, aumentar um pouco para melhor visualizaão */
    }
}

@media (max-width: 480px) {
    .product-container {
        max-width: 90%; /* Em telas muito pequenas, usar mais espaço disponível */
    }
    
    .game-card {
        height: 320px; /* Aumentado de 80px para 320px (400%) */
    }
    
    .features-list {
        grid-template-columns: 1fr; /* Uma coluna em telas muito pequenas */
    }
    
    .products .section-title {
        font-size: var(--font-lg); /* Reduzido ainda mais em telas pequenas */
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-content {
    background-color: var(--zinc-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: var(--border-regular) solid var(--orange-600) !important;
    animation: modalSlideIn 0.3s ease-out;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 300px;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: var(--font-xl);
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text);
    font-size: var(--font-sm);
}

.form-group input {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background-color: var(--zinc-900);
    border: var(--border-thin) solid var(--orange-500);
    color: var(--text);
    font-size: var(--font-md);
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--orange-600);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.auth-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zinc-700);
}

.auth-footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: var(--font-sm);
}

.forgot-password {
    color: var(--orange-500);
    text-decoration: none;
    font-size: var(--font-sm);
    margin-top: 0.5rem;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--font-md);
    margin-top: 1rem;
}

/* Ícones dentro dos inputs */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper input {
    width: 100%;
    padding-left: 2.75rem;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange-500);
    z-index: 1;
}

/* Animações */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos da página de conta */
.account-section {
    padding-top: 5rem;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 1rem 1rem;
}

.account-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--zinc-800);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(234, 12, 12, 0.2);
}

.account-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-group {
    margin-bottom: 0.5rem;
}

.info-group label {
    font-size: var(--font-xs);
    margin-bottom: 0.25rem;
    display: block;
}

.info-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--zinc-700);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.info-value span {
    color: white;
    font-size: var(--font-sm);
}

.info-value .btn-sm {
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-600);
    border: none;
    border-radius: var(--radius-sm);
}

.info-value .btn-sm i {
    width: 16px;
    height: 16px;
    color: white;
}

.info-value .btn-sm:hover {
    background-color: var(--orange-700);
}

/* Estilo para os outros campos de informação */
.info-group p {
    background-color: var(--zinc-700);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    color: white;
    font-size: var(--font-sm);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: var(--font-xs);
}

.account-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Estilo do Modal de Contato */
.contact-content {
    text-align: center;
    padding: 2rem;
    background-color: var(--zinc-800) !important;
}

.contact-content h2 {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: var(--font-sm);
}

/* Estilo específico para o botão do Discord */
.btn-discord {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    background-color: #5865F2 !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
    font-size: var(--font-md) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}

.btn-discord:hover {
    background-color: #4752C4 !important;
}

/* Novo estilo para o ícone do Discord */
.btn-discord .discord-icon {
    width: 2rem !important;
    height: 2rem !important;
    object-fit: contain !important;
}

/* Ajuste do botão de fechar */
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.close-button:hover {
    opacity: 0.8;
}

.close-button i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Estilos dos Modais de Autenticação */
.auth-modal {
    max-width: 90%;
    width: 400px;
    margin: 1rem auto;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-icon {
    width: 3rem;
    height: 3rem;
    color: #00ff22;
    margin-bottom: 1rem;
}

.auth-header h2 {
    font-size: var(--font-xl);
    margin-bottom: 0.5rem;
    color: var(--text);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: var(--zinc-800);
    border: var(--border-regular) solid #ea580c;
    border-radius: var(--radius-md);
    color: white;
    font-size: var(--font-sm);
    transition: none;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--orange-500);
}

.input-with-icon i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    width: 1.25rem;
    height: 1.25rem;
}

/* Checkbox personalizado para os termos */
.terms-checkbox {
    margin-top: -0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.checkbox-container input {
    display: none;
}

.checkbox-container .checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: var(--border-thin) solid var(--text-secondary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    background-color: var(--zinc-800);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--orange-500);
    border-color: var(--orange-500);
}

.checkmark:after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    opacity: 1;
}

.checkbox-container:hover .checkmark {
    border-color: var(--orange-500);
}

.terms-text {
    font-size: var(--font-xs);
}

.terms-text a {
    color: var(--orange-500);
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Responsividade para os cards de produtos, forms e modais */
@media (max-width: 1024px) {
    .product-container {
        max-width: 95%;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        height: 120px;
    }
    
    .price-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .price-description {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .price-tag {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .account-container {
        padding: 1rem;
    }
    
    .account-actions {
        flex-direction: column;
    }
    
    .account-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-container {
        max-width: 100%;
    }
    
    .pricing-info {
        padding: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .auth-modal {
        width: 95%;
    }
    
    .form-group input {
        padding: 0.5rem;
        font-size: var(--font-sm);
    }
    
    .btn-block {
        padding: 0.5rem;
    }
    
    .features-list li {
        padding: 0.5rem;
    }
}

/* Estilos simplificados para botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    font-size: var(--font-md);
}

/* Botão Primário */
.btn-primary {
    background-color: var(--orange-600);
    border-top: 2px solid #00ff2a;
    color: white;
}

.btn-primary:hover {
    background-color: var(--orange-700);
}

/* Botão Secundário */
.btn-secondary {
    background-color: var(--orange-600);
    border-top: 2px solid #00ff2a;
    color: rgb(255, 255, 255);
}

.btn-secondary:hover {
    background-color: var(--orange-700);
}

/* cones dentro dos botões */
.btn i,
.btn .lucide {
    width: 1.2rem; /* Aumentado em 20% */
    height: 1.2rem; /* Aumentado em 20% */
}

/* Estilo do buraco de bala */
.bullet-hole {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('images/bullet-hole.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: bulletHole 3s ease-out forwards !important;
}

@keyframes bulletHole {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Animação do gradiente */
@keyframes gradientWave {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Ajuste do botão de assinar */
.btn-block {
    width: 100%;
    padding: 1rem;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Estilo do footer */
.footer {
    background-color: var(--zinc-900);
    padding: 2rem 0;
    margin-top: auto;
}

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

.copyright {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-sm);
    padding: 0.5rem;
}

.footer-links a:hover {
    color: var(--orange-500);
}

.payment-modal {
    max-width: 90%;
    width: 800px;
    padding: 2rem;
    margin: 2rem auto;
    background: var(--zinc-900);
    border: var(--border-regular) solid var(--orange-600);
}

.payment-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: var(--font-xl);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--zinc-800);
    border: var(--border-thin) solid var(--zinc-700);
    border-radius: var(--radius-md);
    color: var(--text);
    cursor: pointer;
    transition: background-color 0.2s;
}

.payment-method-btn.active {
    border-color: var(--orange-600);
    background: rgba(234, 88, 12, 0.1);
}

.payment-method-btn i {
    width: 2rem;
    height: 2rem;
    color: var(--orange-500);
}

.payment-summary {
    background: var(--zinc-800);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item, .summary-total {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: var(--font-sm);
}

.summary-total {
    border-top: var(--border-thin) solid var(--zinc-700);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: bold;
    font-size: var(--font-md);
}

/* Menu do usuário */
.user-menu {
    position: absolute;
    top: 3.5rem;
    right: 1rem;
    background: var(--zinc-900);
    border: var(--border-thin) solid var(--orange-600);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
    font-size: var(--font-sm);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-item i {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--orange-500);
}

/* Estilo para botão com nome do usuário */
.nav-buttons .btn span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Grade de planos */
.divider {
    background-color: var(--zinc-800);
    border: var(--border-regular) solid var(--orange-600);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 98%;
    max-width: 1400px;
}

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

/* Cards de plano */
.plan-card {
    background-color: var(--zinc-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 94, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 94, 0, 0.2);
    border-color: var(--orange-500);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--orange-500);
    transition: all 0.3s ease;
}

.plan-card:hover::before {
    width: 100%;
    height: 5px;
}

.plan-card h3 {
    font-size: var(--font-xl);
    margin-bottom: 0.5rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.plan-price {
    font-size: var(--font-2xl);
    color: var(--orange-500);
    font-weight: bold;
    margin: 1rem 0;
}

.recommended {
    background-color: rgba(255, 94, 0, 0.15);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orange-500);
    color: white;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: var(--radius-md);
    font-size: var(--font-sm);
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.flag-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.plan-points {
    font-size: var(--font-md);
    color: var(--zinc-400);
    margin-bottom: 1rem;
    text-align: center;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-benefits li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-500);
    font-weight: bold;
}

.plan-card .btn-primary {
    width: 100%;
    margin-top: auto;
    padding: 0.75rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--orange-500);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.plan-card .btn-primary:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
}

/* Ajustes responsivos para os cards de plano */
@media (max-width: 768px) {
    .store-section .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .store-section .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Cursor personalizado */
*, 
*:hover,
*:active,
button,
button:hover,
a,
a:hover,
.btn,
.btn:hover,
.nav-buttons button,
.modal button,
.auth-form button,
.payment-method-btn,
.plan-card,
input,
select,
textarea {
    cursor: url('images/cursor.png') 16 16, auto !important;
}

/* Manter o cursor de texto para campos de entrada */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    cursor: text !important;
}

/* Estilo dos drops caindo */
.falling-drop {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: url('images/drop.png') no-repeat center center;
    background-size: contain;
    z-index: 9997;
    pointer-events: auto;
    cursor: url('images/cursor.png') 16 16, auto !important;
    animation: falling 5s linear forwards !important;
}

@keyframes falling {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(200vh);
        opacity: 1;
    }
}

/* Permitir seleção apenas em campos de input e textarea */
input, 
textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Responsividade para planos e botões */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-sm);
    }
    
    .payment-modal {
        padding: 1rem;
    }
    
    .payment-options {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
    }
    
    .points-status {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .plan-price {
        font-size: var(--font-lg);
    }
    
    .user-menu {
        width: 100%;
        left: 0;
        right: 0;
        top: 4rem;
    }
    
    .falling-drop {
        width: 40px;
        height: 40px;
    }
    
    .payment-options {
        padding: 1rem 0.5rem;
    }
    
    .payment-option-btn {
        min-width: 130px;
        padding: 0.5rem 1rem;
        font-size: var(--font-xs);
    }
}

/* Estilos para a página da loja */
.store-section {
    background-color: #111111;
    min-height: calc(100vh - 4rem);
    padding-top: 0;
    overflow-y: auto;
}

.store-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem 3rem;
}

.store-section .section-title {
    text-align: center;
    font-size: var(--font-2xl);
    margin-bottom: 2.5rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
}

.store-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
}

/* Ajuste o grid de planos para a página da loja */
.store-section .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Botão de Admin */
.nav-buttons .admin-btn {
    background-color: var(--orange-700);
    border-top: 2px solid #00ff2a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: var(--font-md);
    min-width: 7rem;
    display: none; /* Começa escondido */
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons .admin-btn i {
    color: white;
}

.store-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--zinc-800);
    border: var(--border-thin) solid var(--zinc-700);
    border-radius: var(--radius-md);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    font-size: var(--font-sm);
}

.tab-btn.active {
    background-color: var(--orange-500);
    border-color: #00ff40;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.points-container {
    background-color: var(--zinc-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.store-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Ajustar o espaçamento das tabs */
.store-tabs {
    margin-bottom: 2rem;
}

.points-bonus {
    background-color: var(--orange-700);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
    font-weight: 600;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.points-bonus::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('images/coin.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Barra de status de pontos */
.points-status {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.user-points {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--zinc-800);
    padding: 0.5rem 1rem;
    color: var(--text);
    border: var(--border-thin) solid var(--orange-500);
    font-size: var(--font-sm);
    border-radius: var(--radius-sm);
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.15);
}

#userPoints {
    font-weight: bold;
    color: #ff5e00;
    font-size: var(--font-sm);
}

/* Estilos para opções de pagamento */
.payment-options {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1rem 2rem 0.75rem;
    background-color: rgba(17, 17, 17, 0.9);
    z-index: 100;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 94, 0, 0.3);
}

.payment-option-btn {
    background-color: var(--zinc-800);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    min-width: 160px;
    border: var(--border-thin) solid var(--orange-500);
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: var(--font-sm);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-option-btn.active {
    background-color: var(--orange-500);
    color: white;
    border-color: var(--orange-600);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(255, 94, 0, 0.2);
}

.payment-option-btn:hover {
    background-color: var(--orange-500);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(255, 94, 0, 0.2);
}

/* Estilos para o conversor de pontos */
.points-converter {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    background-color: var(--zinc-800);
    border-radius: var(--radius-lg);
    border: var(--border-thin) solid var(--orange-500);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.converter-container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.converter-container h2 {
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
    font-size: var(--font-xl);
}

.converter-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.converter-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--orange-600);
    border-radius: var(--radius-md);
    background-color: var(--zinc-900);
    color: white;
    text-align: center;
    font-size: var(--font-md);
}

.conversion-result {
    font-size: var(--font-lg);
    color: var(--orange-500);
    font-weight: bold;
}

.convert-btn {
    background-color: var(--orange-500);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    min-width: 180px;
    justify-content: center;
    margin-top: 1rem;
}

.convert-btn:hover {
    background-color: var(--orange-600);
}

.points-info {
    color: var(--text-secondary);
    font-size: var(--font-xs);
    text-align: center;
    margin-top: 10px;
}

/* Estilos para o cabeçalho da loja */
.store-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* Container principal da loja */
.store-content {
    background-color: rgba(56, 56, 56, 0.4);
    border: var(--border-regular) solid var(--orange-600);
    padding: 2rem;
    margin-bottom: 1rem;
    margin-top: 4rem;
}

/* Botão de Loja */
.nav-buttons .store-btn,
.nav-buttons .contact-btn,
.nav-buttons .home-btn,
.nav-buttons .login-btn,
.nav-buttons .admin-btn {
    background-color: var(--orange-600);
    border-top: 2px solid #00ff22;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: calc(var(--font-sm) * 1.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
}

.nav-buttons .store-btn:hover,
.nav-buttons .contact-btn:hover,
.nav-buttons .home-btn:hover,
.nav-buttons .login-btn:hover,
.nav-buttons .admin-btn:hover {
    background-color: var(--orange-700);
}

.nav-buttons .store-btn i,
.nav-buttons .contact-btn i,
.nav-buttons .home-btn i,
.nav-buttons .login-btn i,
.nav-buttons .admin-btn i {
    color: white;
}

/* Sistema de Notificaões */
.notification-container {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none;
    background-color: var(--zinc-800);
    border: var(--border-regular) solid;
    border-radius: var(--radius-md);
    padding: 1rem;
    min-width: 300px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: notificationFadeIn 0.3s ease-out;
}

.notification-content {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--font-md);
}

.notification-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.notification-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--font-sm);
    transition: all 0.2s;
}

.notification-btn.confirm {
    background-color: var(--orange-500);
    color: white;
}

.notification-btn.confirm:hover {
    filter: brightness(90%);
}

@keyframes notificationFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%);
    }
}

/* Cores para diferentes tipos de notificação */
.notification-container.success {
    border-color: #22c55e; /* Verde */
}

.notification-container.error {
    border-color: #ef4444; /* Vermelho */
}

.notification-container.warning {
    border-color: #f59e0b; /* Amarelo */
}

.notification-container.info {
    border-color: var(--orange-500); /* Laranja (cor padrão) */
}

.success .notification-btn.confirm {
    background-color: #22c55e;
}

.error .notification-btn.confirm {
    background-color: #ef4444;
}

.warning .notification-btn.confirm {
    background-color: #f59e0b;
}

/* Seção de Benefícios na Loja */
.features-section,
.how-it-works-section {
    padding: 3rem 0;
    background-color: var(--zinc-900);
}

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

.feature-card {
    background-color: var(--zinc-800);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: var(--border-thin) solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-500);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--font-lg);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.5;
}

/* Seção Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background-color: var(--zinc-800);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    border: var(--border-thin) solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--orange-500);
}

.step-number {
    width: 2rem;
    height: 2rem;
    background-color: var(--orange-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--orange-500);
    margin-bottom: 1rem;
    font-size: var(--font-lg);
}

.step-card p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.5;
}

/* Ajustes para o container de produto */
.store-section .product-container {
    background-color: var(--zinc-800);
    border: var(--border-regular) solid var(--orange-600);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 0.5rem auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 98%;
    max-width: 1400px;
}

.store-section .product-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-600), var(--orange-400));
}

.store-section .games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding: 1.5rem;
    min-height: 200px;
    margin: 0 auto;
    max-width: 1200px;
}

.store-section .game-card {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--orange-500);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.store-section .game-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-section .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255, 94, 0, 0.15);
    border-color: var(--orange-400);
}

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

.coming-soon-text {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--orange-500);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: bold;
    z-index: 2;
    border: 1px solid var(--orange-500);
}

.store-section .game-card:has(img[alt="lol"])::after {
    content: "Em breve";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--orange-500);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: bold;
    z-index: 2;
    border: 1px solid var(--orange-500);
}

.store-section .pricing-info {
    width: 100%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 94, 0, 0.1);
}

.store-section .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 1.5rem 0;
    width: 100%;
}

.store-section .features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: var(--font-sm);
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--orange-500);
    transition: all 0.2s ease;
}

.store-section .features-list li:hover {
    background-color: rgba(255, 94, 0, 0.1);
    transform: translateX(3px);
}

.store-section .features-list li i {
    color: var(--orange-500);
    width: 18px;
    height: 18px;
}

.store-section .price-header {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.store-section .price-header h3 {
    color: var(--orange-500);
    font-size: var(--font-2xl);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.store-section .price-header p {
    color: var(--text-secondary);
    font-size: var(--font-md);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* Estilos para o título do pacote na página principal */
.product-container .price-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem;
    margin: -1rem -1rem 0.6rem -1rem;
    background-color: #0c0c0cb0;
    position: relative;
}

.product-container .price-header h3 {
    color: white;
    font-size: calc(var(--font-xl) * 0.9);
    margin: 0;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    position: relative;
    padding-bottom: 1rem;
}

.product-container .price-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
}

.product-container .price-header p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Controle de visibilidade do conteúdo baseado na opção de pagamento */
.store-section.points-option-active .product-container {
    display: none;
}

.lucide { 
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Ajuste para ícones dentro de botões */
button .lucide {
    width: 1rem;
    height: 1rem;
}

/* Ajuste para ícones na feature section */
.feature-icon .lucide {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

/* Ajuste para ícones no contador de drops */
.drop-counter .lucide,
.missed-drops .lucide {
    width: 1rem;
    height: 1rem;
    color: var(--orange-500);
}

/* Estilos do Modal de Tutorial */
.tutorial-modal {
    max-width: 90%;
    width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    background-color: var(--zinc-800);
}

.tutorial-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: var(--border-regular) solid var(--orange-600);
    padding-bottom: 1rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--zinc-900);
    border: var(--border-thin) solid var(--orange-600);
    color: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
}

.tab-button.active {
    background-color: var(--orange-600);
}

.tutorial-content {
    display: none;
}

.tutorial-content.active {
    display: block;
}

.tutorial-content h2 {
    color: var(--orange-600);
    font-size: var(--font-xl);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tutorial-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--zinc-900);
    border-radius: var(--radius-md);
}

.tutorial-section h3 {
    color: white;
    font-size: var(--font-lg);
    margin-bottom: 1rem;
}

.tutorial-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: var(--font-md);
}

.tutorial-section ol {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    line-height: 1.6;
    font-size: var(--font-md);
}

.tutorial-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-container {
    background-color: var(--zinc-900);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.video-container h4 {
    color: white;
    font-size: var(--font-md);
    margin-bottom: 1rem;
    text-align: center;
}

.video-container video {
    width: 100%;
    border-radius: var(--radius-sm);
    background-color: black;
}

/* Ajuste do botão de fechar para o modal de tutorial */
.tutorial-modal .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    z-index: 10;
}

/* Verificação de código */
.verification-code-input {
    letter-spacing: 8px;
    font-size: 1.5rem;
    text-align: center;
    font-family: monospace;
}

.auth-form input[type="text"][name="code"] {
    letter-spacing: 8px;
    font-size: 1.5rem;
    text-align: center;
    font-family: monospace;
    padding: 10px;
}

.points-highlight {
    color: #60a5fa;
    margin-left: 5px;
    font-weight: normal;
}

.plan-name {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade para componentes da loja e tutorial */
@media (max-width: 1024px) {
    .store-section .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tutorial-modal {
        width: 90%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .store-section .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-section .product-container {
        padding: 1rem;
    }
    
    .tutorial-videos {
        grid-template-columns: 1fr;
    }
    
    .tutorial-modal {
        padding: 1rem;
    }
    
    .tutorial-tabs {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .store-section .games-grid {
        grid-template-columns: 1fr;
    }
    
    .store-section .game-card {
        height: 320px; /* Aumentado de 80px para 320px (400%) */
    }
    
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .store-content {
        padding: 1rem;
    }
    
    .tutorial-section {
        padding: 1rem;
    }
    
    .tutorial-section h3 {
        font-size: 1.2rem;
    }
    
    .store-section .price-header h3 {
        font-size: 1.2rem;
    }
}

/* Contador de drops no centro */
.drop-counter-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.drop-counter, .missed-drops {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    background: var(--zinc-800);
    border: var(--border-thin) solid var(--orange-500);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: var(--font-xs);
    height: auto;
    min-width: 120px; /* Garantir largura mínima */
    justify-content: center;
}

.ranking-btn {
    width: 100%;
    height: auto;
    padding: 0.25rem 0.75rem;
    font-size: var(--font-xs);
    background: var(--zinc-800);
    border: var(--border-thin) solid var(--orange-500);
    border-radius: var(--radius-sm);
    color: var(--text);
    min-width: 120px; /* Garantir largura mínima */
}











/* Botão de Loja com borda verde */
.nav-buttons a[href*="loja"],
.nav-buttons .store-btn {
    background-color: var(--orange-600) !important;
    border-top: 4px solid #00ff22 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.nav-buttons a[href*="loja"],
.nav-buttons .store-btn {
    font-size: calc(var(--font-sm) * 1.2);
    background-color: var(--orange-600) !important;
    border-top: 3px solid #00ff22 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    
}

/* Estilo específico para o botão de Downloads */
.nav-buttons .downloads-btn {
    font-size: calc(var(--font-sm) * 1.2);
    background-color: var(--orange-600) !important;
    border-top: 3px solid #00ff22 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

/* Modal para visualização de GIFs em tamanho maior */
.gif-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gif-modal.active {
    display: flex;
    opacity: 1;
}

.gif-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.gif-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 3px solid var(--orange-600);
    border-radius: var(--radius-md);
}

.gif-modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--orange-600);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gif-modal-close:hover {
    background-color: var(--orange-700);
}

#changePasswordButton {
    color: rgb(255, 255, 255);  
}