/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de código binário no fundo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
                  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23111' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23111'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
}

/* Conteúdo principal */
.container {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

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

/* Logo e ícone do Anonymous */
.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.anonymous-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    filter: invert(1);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: invert(1); }
    50% { transform: scale(1.05); filter: invert(0.9) brightness(1.2); }
}

.logo {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.logo::before, .logo::after {
    content: 'VISIONÁRIO';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo::before {
    color: #0f0;
    z-index: -1;
    animation: glitch-1 2s infinite linear alternate-reverse;
    opacity: 0.3;
}

.logo::after {
    color: #f00;
    z-index: -2;
    animation: glitch-2 3s infinite linear alternate-reverse;
    opacity: 0.3;
}

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

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, 2px); }
    75% { transform: translate(-2px, -2px); }
}

/* Descrição */
.description {
    margin: 2rem 0;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description p {
    margin-bottom: 1rem;
}

.highlight {
    color: #0f0;
    font-weight: bold;
    text-shadow: 0 0 5px #0f0;
}

/* Botão estilizado */
.button-container {
    margin: 2rem 0;
}

.access-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.access-button::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: all 0.5s ease;
}

.access-button:hover {
    color: #000;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.access-button:hover::before {
    left: 100%;
}

/* Código binário animado */
.binary {
    position: fixed;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: -1;
}

/* Efeito de interferência/estática */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
    pointer-events: none;
    opacity: 0.1;
    z-index: 10;
}

.glitch-scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 11;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: scanline 6s linear infinite;
}

@keyframes scanline {
    0% { top: -10%; }
    50% { top: 110%; }
    100% { top: -10%; }
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    .anonymous-icon {
        width: 100px;
        height: 100px;
    }
    .description {
        font-size: 1rem;
    }
}