/* TecVendas - Estilo Principal (Tema Gamer Dark Premium) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #121214;
    --bg-secondary: #1a1a1e;
    --bg-tertiary: #26262b;
    --bg-header: rgba(18, 18, 20, 0.8);
    --accent-purple: #8257e5;
    --accent-purple-glow: rgba(130, 87, 229, 0.4);
    --accent-cyan: #00f2fe;
    --accent-cyan-glow: rgba(0, 242, 254, 0.4);
    --text-main: #f3f4f6;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-neon-purple: rgba(130, 87, 229, 0.3);
    --border-neon-cyan: rgba(0, 242, 254, 0.3);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-theme {
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e4e6eb;
    --bg-header: rgba(255, 255, 255, 0.85);
    --accent-purple: #722ed1;
    --accent-purple-glow: rgba(114, 46, 209, 0.15);
    --accent-cyan: #08979c;
    --accent-cyan-glow: rgba(8, 151, 156, 0.15);
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-neon-purple: rgba(114, 46, 209, 0.2);
    --border-neon-cyan: rgba(8, 151, 156, 0.2);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Scrollbar estilizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Header & Navbar */
header {
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.logo-text:hover {
    transform: scale(1.03);
}

.logo-text img {
    height: 36px;
    width: 36px;
    border-radius: 10px;
    box-shadow: 0 0 14px rgba(0, 242, 254, 0.5), 0 0 30px rgba(130, 87, 229, 0.3);
    animation: logo-glow 3s ease-in-out infinite alternate;
    transition: var(--transition);
}

.logo-text:hover img {
    box-shadow: 0 0 22px rgba(0, 242, 254, 0.8), 0 0 45px rgba(130, 87, 229, 0.5);
}

@keyframes logo-glow {
    0%   { box-shadow: 0 0 10px rgba(0, 242, 254, 0.4), 0 0 20px rgba(130, 87, 229, 0.2); }
    100% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.7), 0 0 40px rgba(130, 87, 229, 0.4); }
}

.logo-text span {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #a78bfa 50%, var(--accent-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-text-shimmer 4s linear infinite;
    letter-spacing: -0.3px;
}

@keyframes logo-text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

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

/* Botões */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), #6c5ce7);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 87, 229, 0.6);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-outline-cyan {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--border-neon-cyan);
    box-shadow: inset 0 0 4px rgba(0, 242, 254, 0.1);
}

.btn-outline-cyan:hover {
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* User Menu & Badges */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-profile-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
}

.user-profile-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.badge {
    background-color: #ef4444;
    color: #fff;
    border-radius: 50%;
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

/* Main Container */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.4) 0%, rgba(18, 18, 20, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(130, 87, 229, 0.15);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-purple);
}

.promo-card.cyan::before {
    background: var(--accent-cyan);
}

.promo-card:hover.cyan {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.15);
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .promo-card {
        height: 160px;
    }
}

/* Hero Section */
/* Hero Carousel Section */
.hero-carousel {
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.35) 0%, rgba(18, 18, 20, 0.55) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(130, 87, 229, 0.25);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-height: 380px;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, background 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

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

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 3rem;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--accent-cyan);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--accent-cyan-glow);
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        justify-content: center;
        gap: 1.5rem;
    }
    .hero-img-container {
        display: none;
    }
    .carousel-indicators {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-img-container {
    width: 380px;
    height: 280px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(130, 87, 229, 0.4));
    animation: controllerBounce 3.5s ease-in-out infinite;
}

@keyframes controllerBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
        filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.6));
    }
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-neon-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.purple {
    background: rgba(130, 87, 229, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(130, 87, 229, 0.2);
}

.stat-icon.cyan {
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Titles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--accent-purple);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.section-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.section-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(0,242,254,0.4);
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.category-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.1);
}

.category-card i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.game-card.circle {
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.game-card.circle:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
    transform: translateY(-5px);
}

.game-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-card:hover {
    transform: scale(1.03);
    border-color: var(--border-neon-purple);
    box-shadow: 0 8px 24px rgba(130, 87, 229, 0.2);
}

.game-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transition: var(--transition);
}

.game-card:hover .game-banner {
    opacity: 0.85;
    transform: scale(1.05);
}

.game-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(7, 8, 11, 0.95) 0%, rgba(7, 8, 11, 0.4) 60%, transparent 100%);
    padding: 1.2rem;
    width: 100%;
}

.game-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
}

.game-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
}

.offer-card:hover {
    border-color: var(--border-neon-purple);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(130, 87, 229, 0.15);
}

.offer-image-wrapper {
    height: 160px;
    width: 100%;
    position: relative;
    background: var(--bg-tertiary);
    overflow: hidden;
}

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

.offer-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(7, 8, 11, 0.8);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-body {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-game {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.offer-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    margin-top: auto;
}

.offer-seller {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.offer-seller img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.offer-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* Info Banner Blocks */
.info-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card i {
    font-size: 2rem;
    color: var(--accent-purple);
}

.info-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Auth Pages (Login / Register) */
.auth-container {
    max-width: 420px;
    width: 100%;
    margin: 4rem auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-neon-purple);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

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

.auth-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-header p a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple-glow);
}

.form-select {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: none;
}

/* Product Detail Page */
.product-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.product-gallery {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    position: relative;
}

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

.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-header-details .game-tag {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.product-header-details h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-stats-row {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}

.product-stats-row span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-price-box {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* Seller Card Widget */
.seller-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-widget-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.seller-widget-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.seller-widget-name h4 {
    font-size: 1rem;
    font-weight: 600;
}

.seller-widget-name p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seller-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
}

.seller-stat-item {
    text-align: center;
}

.seller-stat-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.seller-stat-item strong {
    font-size: 0.95rem;
    color: #fff;
}

.action-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.product-description-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    margin-top: 2rem;
}

.product-description-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.6rem;
}

.product-description-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: pre-line;
}

/* Dashboard Page */
.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.dashboard-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: flex-start;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.sidebar-btn:hover, .sidebar-btn.active {
    background: rgba(130, 87, 229, 0.1);
    color: #fff;
    font-weight: 600;
}

.sidebar-btn.active {
    border-left: 3px solid var(--accent-purple);
    border-radius: 0 8px 8px 0;
}

.dashboard-content-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.dashboard-panel-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Data Table */
.data-table-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.data-table th {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    font-size: 0.75rem;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Create Offer Form Card */
.form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

/* Chat Page */
.chat-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 160px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.chat-inbox {
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.chat-inbox-header {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-inbox-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.inbox-list {
    flex-grow: 1;
    overflow-y: auto;
    list-style: none;
}

.inbox-item {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.inbox-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.inbox-item.active {
    background: rgba(130, 87, 229, 0.08);
    border-left: 3px solid var(--accent-purple);
}

.inbox-item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.inbox-item-details {
    flex-grow: 1;
    min-width: 0;
}

.inbox-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inbox-item-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.inbox-item-preview {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-window {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-tertiary);
}

.chat-window-header {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-active-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-active-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-active-name h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-active-name p {
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.chat-messages {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-bubble-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 65%;
}

.message-bubble-wrapper.received {
    align-self: flex-start;
}

.message-bubble-wrapper.sent {
    align-self: flex-end;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-break: break-word;
}

.message-bubble-wrapper.received .message-bubble {
    background: var(--bg-secondary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-top-left-radius: 2px;
}

.message-bubble-wrapper.sent .message-bubble {
    background: var(--accent-purple);
    color: #fff;
    border-top-right-radius: 2px;
}

.message-meta {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    align-self: flex-end;
}

.message-bubble-wrapper.sent .message-meta {
    align-self: flex-end;
}

.chat-input-area {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.chat-input-form {
    display: flex;
    gap: 0.8rem;
}

.chat-input-field {
    flex-grow: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.chat-input-field:focus {
    border-color: var(--accent-purple);
}

/* Empty States */
.empty-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 1rem;
}

.empty-chat i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.empty-chat p {
    font-size: 0.9rem;
}

/* User Switcher Quick Testing widget */
.tester-widget {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.tester-widget span {
    font-weight: 500;
}

.tester-actions {
    display: flex;
    gap: 0.5rem;
}

/* Footer styling */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-purple);
    color: #fff;
    border-color: var(--accent-purple);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom span a {
    color: var(--accent-cyan);
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .chat-container {
        grid-template-columns: 1fr;
        height: 600px;
    }
    .chat-inbox {
        display: none; /* Em telas menores o chat foca na janela ativa, no protótipo vamos manter simplificado */
    }
    .chat-inbox.show {
        display: flex;
    }
    .chat-window {
        display: flex;
    }
    .chat-window.hide {
        display: none;
    }
    .hero {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-img-container {
        display: none;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pix Modal (Checkout) Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 8, 11, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.pix-modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-neon-cyan);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.pix-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.pix-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pix-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.pix-qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.pix-timer {
    font-size: 0.8rem;
    color: #eab308;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pix-price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-tertiary);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.pix-price-summary strong {
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

/* AI Chatbot Styles */
.ai-chat-wrapper {
    position: fixed;
    bottom: 85px;
    right: 15px;
    z-index: 9999;
}

.ai-chat-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), #6c5ce7);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-purple-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.ai-chat-toggle-btn:hover {
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 6px 20px rgba(130, 87, 229, 0.6);
}

.ai-chat-box {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
    height: 400px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-neon-purple);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ai-chat-header {
    background: var(--bg-tertiary);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.ai-chat-messages {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ai-msg {
    max-width: 80%;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    word-break: break-word;
}

.ai-msg.received {
    background: var(--bg-tertiary);
    color: var(--text-main);
    align-self: flex-start;
    border-top-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.ai-msg.sent {
    background: var(--accent-purple);
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.ai-chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
}

.quick-reply-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-reply-btn:hover {
    color: #fff;
    border-color: var(--accent-cyan);
}

.quick-reply-btn.support-accent {
    border-color: var(--border-neon-cyan);
    color: var(--accent-cyan);
}

.quick-reply-btn.support-accent:hover {
    background: rgba(0, 242, 254, 0.1);
}

.ai-chat-input-area {
    padding: 0.6rem 1rem;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

.ai-chat-input-area input {
    flex-grow: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: var(--text-main);
    font-size: 0.75rem;
    outline: none;
}

.ai-chat-input-area input:focus {
    border-color: var(--accent-purple);
}

/* Notification Widget Styles */
.notif-container {
    position: relative;
    display: inline-block;
}

.notif-bell-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.notif-bell-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.notif-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    width: 290px;
    max-height: 350px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-neon-purple);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.notif-header {
    background: var(--bg-tertiary);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif-header h4 {
    font-size: 0.85rem;
    font-weight: 700;
}

.notif-header button {
    background: transparent;
    border: none;
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.notif-list {
    flex-grow: 1;
    overflow-y: auto;
    list-style: none;
}

.notif-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.notif-item.unread {
    background: rgba(130, 87, 229, 0.04);
}

.notif-item-text {
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.notif-item-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Rating Stars Selector Styles */
.rating-stars-input {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.rating-stars-input i {
    font-size: 2rem;
    color: var(--bg-tertiary);
    cursor: pointer;
    transition: var(--transition);
}

.rating-stars-input i.active, .rating-stars-input i:hover {
    color: #fbbf24;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.4));
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 320px;
    pointer-events: none;
}

.toast-card {
    background: rgba(13, 15, 20, 0.95);
    border: 1px solid var(--border-neon-purple);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(130, 87, 229, 0.4);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease forwards;
    backdrop-filter: blur(10px);
}

.toast-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}

.toast-card.slide-out {
    animation: toastSlideOut 0.3s ease forwards;
}

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

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

/* Interações do Card de Produto (Estilo Rei dos Coins) */
.offer-card:hover .btn-comprar-hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.4);
    transform: scale(1.02);
}

.circular-games-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-tertiary);
}

.circular-games-wrapper::-webkit-scrollbar {
    height: 6px;
}

.circular-games-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 10px;
}

/* Eneba Style Floating Promo Widget */
.eneba-promo-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    width: 240px;
    background: #0f1016;
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 
                0 0 15px rgba(130, 87, 229, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    animation: widgetBounce 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.eneba-promo-widget.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

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

.eneba-promo-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eneba-promo-close {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.eneba-promo-close:hover {
    color: #fff;
}

.eneba-promo-body {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.eneba-countdown-grid {
    display: flex;
    gap: 0.4rem;
    margin: 0.2rem 0;
}

.eneba-countdown-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.3rem 0.4rem;
    text-align: center;
    min-width: 42px;
}

.eneba-countdown-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    line-height: 1;
}

.eneba-countdown-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-top: 0.1rem;
}

.eneba-promo-btn {
    width: 100%;
    background: #fbbf24;
    color: #000 !important;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.45rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

.eneba-promo-btn:hover {
    background: #f59e0b;
    transform: scale(1.02);
}

@keyframes widgetBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(130, 87, 229, 0.4);
    }
}

/* 🟢 Estilos Aprimorados para o Novo Layout Hero e Lateral */
.game-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a1a1aa;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game-pill:hover {
    background: rgba(130, 87, 229, 0.1);
    border-color: var(--accent-purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 87, 229, 0.2);
}

.game-pill.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-glow));
    border-color: var(--accent-purple);
    color: #fff;
    box-shadow: 0 4px 15px rgba(130, 87, 229, 0.4);
}

/* Efeito Float para elementos do Banner */
.float-element {
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Glow Pulsante */
.glow-pulse {
    animation: glowPulseAnimation 3s ease-in-out infinite;
}

@keyframes glowPulseAnimation {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 15px rgba(0,242,254,0.4)); }
    50% { opacity: 1; filter: drop-shadow(0 0 30px rgba(0,242,254,0.8)); }
}

/* Estilos de Promo Card Premium */
.promo-card {
    background: linear-gradient(145deg, rgba(23, 23, 27, 0.7) 0%, rgba(13, 13, 15, 0.9) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.promo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(130, 87, 229, 0.15), transparent 50%);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.promo-card.cyan::after {
    background: radial-gradient(circle at 100% 0%, rgba(0, 242, 254, 0.15), transparent 50%);
}

.promo-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(130, 87, 229, 0.4) !important;
    box-shadow: 0 15px 35px rgba(130, 87, 229, 0.25) !important;
}

.promo-card.cyan:hover {
    border-color: rgba(0, 242, 254, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.25) !important;
}

/* Novo layout para os cards em destaque */
.featured-game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 242, 254, 0.5) !important;
    box-shadow: 0 12px 40px rgba(0, 242, 254, 0.3) !important;
}

.featured-game-card:nth-child(2):hover {
    border-color: rgba(130, 87, 229, 0.6) !important;
    box-shadow: 0 12px 40px rgba(130, 87, 229, 0.35) !important;
}

.featured-game-card:nth-child(3):hover {
    border-color: rgba(251, 191, 36, 0.5) !important;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25) !important;
}

.featured-game-card img {
    transition: transform 0.8s ease, filter 0.8s ease;
}

.featured-game-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.5) brightness(1.1);
}

/* 🎮 Estilos Inspirados no Design G2G / LootBar */
.g2g-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.g2g-game-card {
    height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.g2g-game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
    border-color: rgba(0, 242, 254, 0.3);
}

.g2g-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.98) 0%, rgba(13, 17, 23, 0.5) 45%, rgba(13, 17, 23, 0.1) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.g2g-logo-area {
    margin-top: 1rem;
}

.g2g-game-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-family: 'Manrope', sans-serif;
    display: block;
}

.g2g-badge {
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: auto;
    margin-bottom: 1rem;
}

.g2g-badge.orange {
    background: #f97316;
    color: #fff;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.g2g-badge.blue {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.g2g-badge.yellow {
    background: #eab308;
    color: #000;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

.g2g-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.g2g-game-card:hover .g2g-btn {
    background: #fff;
    color: #0d1117;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Trust Bar */
.g2g-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.g2g-trust-bar span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.g2g-trust-bar i {
    color: var(--accent-cyan);
    font-size: 0.95rem;
}

/* Categorias Modernas */
.g2g-categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.g2g-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g2g-category-square {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.g2g-category-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.3s ease;
    text-align: center;
}

.g2g-category-item:hover .g2g-category-square {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.g2g-category-item:hover span {
    color: #fff;
}

/* Cores específicas dos ícones */
.g2g-category-square.blue {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}
.g2g-category-item:hover .g2g-category-square.blue {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.g2g-category-square.orange {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
    color: #fb923c;
}
.g2g-category-item:hover .g2g-category-square.orange {
    background: rgba(249, 115, 22, 0.2);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.g2g-category-square.sky {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
    color: #38bdf8;
}
.g2g-category-item:hover .g2g-category-square.sky {
    background: rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.g2g-category-square.purple {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}
.g2g-category-item:hover .g2g-category-square.purple {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.g2g-category-square.green {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}
.g2g-category-item:hover .g2g-category-square.green {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.g2g-category-square.yellow {
    background: rgba(234, 179, 8, 0.12);
    border-color: rgba(234, 179, 8, 0.3);
    color: #facc15;
}
.g2g-category-item:hover .g2g-category-square.yellow {
    background: rgba(234, 179, 8, 0.2);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.25);
}

.g2g-category-square.pink {
    background: rgba(236, 72, 153, 0.12);
    border-color: rgba(236, 72, 153, 0.3);
    color: #f472b6;
}
.g2g-category-item:hover .g2g-category-square.pink {
    background: rgba(236, 72, 153, 0.2);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

.g2g-category-square.steam-color {
    background: rgba(27, 40, 56, 0.4);
    border-color: rgba(102, 192, 244, 0.2);
    color: #66c0f4;
}
.g2g-category-item:hover .g2g-category-square.steam-color {
    background: rgba(27, 40, 56, 0.6);
    box-shadow: 0 8px 20px rgba(102, 192, 244, 0.25);
}

/* New tag acima do quadrado */
.new-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
    letter-spacing: 0.5px;
}
/* Estado Ativo/Selecionado para Categorias Modernas */
.g2g-category-item.active .g2g-category-square {
    transform: translateY(-5px);
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.35) !important;
}

.g2g-category-item.active span {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}


/* ===== Hero G2G Carousel Refresh ===== */
.hero-side-promos {
    display: grid;
    gap: 1.5rem;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-game-badge {
    min-width: 180px;
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(10, 15, 25, 0.35);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    text-align: center;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.hero-game-badge strong {
    display: block;
    margin-top: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.hero-slide-gdmo {
    background:
      linear-gradient(90deg, rgba(10,14,20,0.88) 0%, rgba(10,14,20,0.58) 50%, rgba(10,14,20,0.25) 100%),
      url('https://images.unsplash.com/photo-1511882150382-421056c89033?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-slide-tibia {
    background:
      linear-gradient(90deg, rgba(10,14,20,0.88) 0%, rgba(10,14,20,0.58) 50%, rgba(10,14,20,0.25) 100%),
      url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-slide-priston {
    background:
      linear-gradient(90deg, rgba(10,14,20,0.88) 0%, rgba(10,14,20,0.58) 50%, rgba(10,14,20,0.25) 100%),
      url('https://images.unsplash.com/photo-1553481187-be93c21490a9?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-slide-roblox {
    background:
      linear-gradient(90deg, rgba(10,14,20,0.88) 0%, rgba(10,14,20,0.58) 50%, rgba(10,14,20,0.25) 100%),
      url('https://images.unsplash.com/photo-1511512578047-dfb367046420?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.promo-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .hero-side-promos {
        grid-template-columns: 1fr;
    }
    .hero-game-badge {
        min-width: auto;
        width: 100%;
    }
}


/* Top stats bar */
.top-stats-bar{
    display:flex;
    gap:1rem;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    margin: 0.75rem auto 1rem;
    padding: .9rem 1rem;
    max-width: 1280px;
    background: rgba(22,22,28,.92);
    border:1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}
.top-stat-item{
    display:flex;
    align-items:center;
    gap:.55rem;
    color: var(--text-primary, #fff);
    font-weight:700;
}
.top-stat-item i{
    color:#00e5ff;
}
#btn-logout{
    display:none !important;
}
