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

:root {
    --primary-red: #ff3d3d;
    --primary-red-dark: #e03535;
    --accent-blue: #5865F2;
    --bg-dark: #0c0c0c;
    --bg-card: #1a1a1a;
    --bg-card-light: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #888888;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-red: rgba(255, 61, 61, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 61, 61, 0.3);
    --success-green: #c80000;
    --warning-yellow: #ffeb3b;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;

    /* FUNDO BASE */
    background:
        linear-gradient(135deg, var(--bg-dark), #1a1a1a00),
        url("../images/fundo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    padding: 20px;
    padding-top: 130px;

    position: relative;
}

/* OVERLAY ESCURO (controle de opacidade da imagem) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72); /* ajuste aqui se quiser mais/menos escuro */
    z-index: 0;
    pointer-events: none;
}

/* BRILHO VERDE PADRONIZADO */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at 80% 60%,
        rgba(253, 0, 0, 0.1) 0%,
        transparent 50%
    );
    z-index: 0;
    pointer-events: none;
}

/* GARANTE QUE TODO CONTEÚDO FIQUE ACIMA DO FUNDO */
body > * {
    position: relative;
    z-index: 1;
}


.hamburger {
    visibility: hidden;
}

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

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Cards */
.username-card, .gamepass-card {
    background: linear-gradient(145deg, var(--bg-card), #151515);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.card-header h1 {
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Input Section */
.input-section {
    margin-bottom: 2rem;
}

.input-section label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--border-red);
    background: rgba(255, 255, 255, 0.12);
}

.search-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hint {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Loading */
.loading-section {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

/* User Found */
.user-found {
    animation: fadeIn 0.5s ease;
}

.user-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.user-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.username {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.user-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.user-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirmation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.confirmation p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* User Not Found */
.user-not-found {
    text-align: center;
    padding: 3rem;
    animation: fadeIn 0.5s ease;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

/* Requirements */
.requirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.requirements h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements ul {
    list-style: none;
    padding-left: 0;
}

.requirements li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.requirements li i {
    color: var(--success-green);
    margin-top: 0.25rem;
}

/* Gamepass Specific */
.step-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    animation: fadeIn 0.5s ease;
}

.step-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-badge {
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Tutorial */
.tutorial-warning {
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.tutorial-warning i {
    color: var(--warning-yellow);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tutorial-videos {
    margin-bottom: 2rem;
}

.tutorial-videos h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.video-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-red);
    transform: translateY(-2px);
}

.video-link i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.tutorial-steps {
    margin-bottom: 2rem;
}

.tutorial-steps h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tutorial-steps ol {
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.tutorial-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.tutorial-steps a {
    color: var(--primary-red);
    text-decoration: none;
}

.tutorial-steps a:hover {
    text-decoration: underline;
}

/* Confirmation Box */
.confirmation-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.confirmation-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.username-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 61, 61, 0.1);
    border-radius: 25px;
    display: inline-block;
}

.confirmation-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: left;
}

/* Price Section */
.price-section {
    margin: 2rem 0;
}

.price-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.price-table th {
    background: rgba(255, 61, 61, 0.2);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: white;
    border-bottom: 2px solid var(--primary-red);
}

.price-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.gamepass-price {
    color: var(--primary-red) !important;
    font-size: 1.1rem;
}

.calculation-note {
    background: rgba(255, 61, 61, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.calculator-tip {
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
}

/* Ready Check */
.ready-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ready-check i {
    font-size: 2rem;
    color: var(--success-green);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Navigation */
.back-section, .navigation {
    text-align: center;
    margin-top: 2rem;
}

.back-btn {
    background: none;
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    border-color: var(--border-red);
    color: var(--text-light);
}

/* Alert Messages */
.alert-message {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease;
}

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

.close-alert {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

/* Small text */
.small {
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .username-card, .gamepass-card {
        padding: 1.5rem;
    }
    
    .card-header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .user-card {
        flex-direction: column;
        text-align: center;
    }
    
    .user-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .confirmation-buttons {
        flex-direction: column;
    }
    
    .video-links {
        grid-template-columns: 1fr;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th, .price-table td {
        padding: 0.75rem 0.5rem;
    }
}



































/* Estilos para o novo sistema de verificação real */

/* Badge de verificação do Roblox */
.roblox-verified-badge {
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

/* Estatísticas do usuário */
.user-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-item {
    background: rgba(255, 68, 68, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.stat-item i {
    color: rgb(255, 68, 68);
    font-size: 14px;
}

/* Indicador de usuário real */
.real-user-indicator {
    background: rgba(0, 123, 255, 0.2);
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #4da6ff;
}

.real-user-indicator i {
    color: #007bff;
}

/* Status colors */
.text-success {
    color: #44ff44ff !important;
}

.text-danger {
    color: #ff4444 !important;
}

.text-warning {
    color: #ffc107 !important;
}

/* Loading melhorado */
.loading-section {
    text-align: center;
    padding: 40px 20px;
}

.loading-section .spinner {
    border: 3px solid rgba(255, 68, 68, 0.2);
    border-top: 3px solid rgb(255, 68, 68);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-section p {
    color: #aaa;
    font-size: 14px;
}

/* Card de usuário melhorado */
.user-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    margin-bottom: 20px;
}

.user-info h3 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 18px;
}

.user-info .username {
    margin: 0 0 10px 0;
    color: #aaa;
    font-size: 14px;
}

/* Botão de confirmação destacado */
.confirmation {
    background: rgba(255, 68, 68, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 68, 68, 0.1);
}

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

.confirmation p i {
    color: rgb(255, 68, 68);
    margin-right: 8px;
}

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

/* Mensagem de sucesso especial para usuário real */
.success-message {
    background: rgba(167, 40, 40, 0.1);
    border: 1px solid rgba(167, 40, 40, 0.3);
    color: #a72828;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
    .user-card {
        flex-direction: column;
        text-align: center;
    }
    
    .user-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
        justify-content: flex-start;
    }
    
    .confirmation-buttons {
        flex-direction: column;
    }
}
/* Garantir que sempre funcione */
.roblox-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgb(255, 68, 68);
    object-fit: cover;
}

/* Loading sempre visível */
.loading-section {
    text-align: center;
    padding: 40px;
}

.loading-section .spinner {
    border: 3px solid rgba(255, 68, 68, 0.3);
    border-top: 3px solid rgb(255, 68, 68);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Cards responsivos */
.user-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

.user-info h3 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 18px;
}

.user-info .username {
    margin: 0 0 10px 0;
    color: #aaa;
    font-size: 14px;
}

/* Botões sempre funcionais */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(255, 68, 68), rgb(255, 68, 68));
    color: black;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5555, #ff5555);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #333;
    color: white;
}

.btn-secondary:hover {
    background: #444;
}