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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Estilos da página Neon */
.neon-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.neon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.logo .neon-text {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.neon-header nav {
    display: flex;
    gap: 2rem;
}

.neon-header nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.neon-header nav a:hover {
    color: #00ff88;
}

.neon-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.limit-section {
    text-align: center;
    max-width: 500px;
}

.limit-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.current-limit {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.current-limit h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.limit-value {
    font-size: 3rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 1rem;
}

.increase-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-bottom: 2rem;
}

.increase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.benefits {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Estilos da tela de hack */
.hack-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    color: #00ff00;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
}

.hidden {
    display: none !important;
}

/* Matrix background */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
    animation: matrix-scroll 2s linear infinite;
}

@keyframes matrix-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Glitch overlay */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(255, 0, 0, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 0, 0.1) 100%);
    animation: glitch-overlay 0.3s infinite;
}

@keyframes glitch-overlay {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hack-content {
    text-align: center;
    z-index: 10;
}

.skull {
    font-size: 5rem;
    animation: skull-bounce 1s infinite;
    margin-bottom: 1rem;
}

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

.hack-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ff00;
    animation: title-flicker 0.5s infinite;
}

@keyframes title-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Glitch effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: #0000ff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.hack-message {
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: typing 2s forwards;
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }

@keyframes typing {
    0% { opacity: 0; width: 0; }
    50% { opacity: 1; }
    100% { opacity: 1; width: 100%; }
}

/* Terminal falso */
.fake-terminal {
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 5px;
    width: 400px;
    margin: 2rem auto;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.terminal-header {
    background: #333;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #00ff00;
}

.terminal-title {
    color: #00ff00;
    font-size: 0.9rem;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
}

.btn-close { background: #ff5f56; color: white; }
.btn-min { background: #ffbd2e; color: white; }
.btn-max { background: #27ca3f; color: white; }

.terminal-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
    color: #00ff00;
}

.cursor {
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Pop-ups spam */
.popup-spam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.popup {
    position: absolute;
    background: #ff0000;
    color: white;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 1rem;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    animation: popup-bounce 2s infinite;
}

.popup-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.popup-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.popup-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
}

.popup-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes popup-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(1deg); }
    50% { transform: scale(0.95) rotate(-1deg); }
    75% { transform: scale(1.02) rotate(0.5deg); }
}

.popup-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid white;
    padding-bottom: 0.5rem;
}

.close-btn {
    background: #ff0000;
    color: white;
    border: 2px solid #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
    animation: button-pulse 1s infinite;
    z-index: 20;
    position: relative;
}

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

.close-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hack-title {
        font-size: 2rem;
    }
    
    .fake-terminal {
        width: 90%;
    }
    
    .benefits {
        flex-direction: column;
    }
    
    .popup {
        min-width: 200px;
        padding: 0.8rem;
    }
}
