* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* Cursor de cruz nostálgico de sites de 1998 */
    cursor: crosshair; 
}

body {
    background-color: #0000AA; 
    color: #FFFFFF;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Letreiros */
.marquee-container {
    width: 100%;
    background: yellow;
    color: black;
    font-weight: bold;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 3px solid red;
    position: fixed;
    z-index: 10;
}
.top { top: 0; }

.marquee-text {
    display: inline-block;
    animation: marquee 10s linear infinite;
    font-size: 1.2rem;
}

@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* A Janela Estilo Windows 95 */
.error-window {
    background-color: #C0C0C0;
    color: #000000;
    width: 95%;
    max-width: 450px;
    margin-top: 60px;
    margin-bottom: 40px;
    border: 3px solid #FFFFFF;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 5px 5px 0px black;
    transform: rotate(-1.5deg); /* Um pouco mais torto */
}

.title-bar {
    background-color: #000080;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background-color: #C0C0C0;
    color: black;
    padding: 0 6px;
    border: 2px solid white;
    border-right-color: gray;
    border-bottom-color: gray;
    font-weight: bold;
}
.close-btn:active {
    border: 2px solid gray;
    border-right-color: white;
    border-bottom-color: white;
}

.window-content {
    padding: 20px;
    text-align: center;
}

.glitch-text {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: red;
    font-size: 2.5rem;
    text-shadow: 3px 3px 0px yellow;
    margin-bottom: 10px;
}

.tagline {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 1.2rem;
    margin: 15px 0;
    background: black;
    color: lime;
    padding: 5px;
}

.lore {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Animação do Dog no Hover */
.bad-image {
    width: 150px;
    height: 150px;
    border: 5px dotted red;
    background-color: white;
    image-rendering: pixelated; 
    margin-bottom: 10px;
    transition: transform 0.1s;
}

.bad-image:hover {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* Tokenomics */
.tokenomics {
    background: #FFCCCC;
    border: 2px dashed red;
    padding: 10px;
    margin-bottom: 15px;
    text-align: left;
    font-family: Arial, sans-serif;
}
.tokenomics h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    text-align: center;
}
.tokenomics ul {
    list-style-type: square;
    padding-left: 20px;
    font-size: 0.85rem;
}

/* Caixa do Contrato interativa */
.ca-container {
    background: #FFFFCC;
    border: 3px outset gray;
    padding: 10px;
    margin-bottom: 20px;
    cursor: pointer; /* Indica que é clicável */
}
.ca-container:active {
    border: 3px inset gray;
    background: #FFFF99;
}

.ca-container p {
    font-size: 0.8rem;
    font-weight: bold;
    color: red;
    margin-bottom: 5px;
    font-family: "Comic Sans MS", cursive;
}

.ca-text {
    display: block;
    background: #000;
    color: #00FF00;
    padding: 8px;
    word-break: break-all;
    font-size: 0.95rem;
    font-weight: bold;
}

/* Botões Anos 90 */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: block;
    padding: 12px;
    text-decoration: none;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    font-size: 1.1rem;
    color: black;
    background-color: #C0C0C0;
    border: 4px solid white;
    border-right-color: black;
    border-bottom-color: black;
}
.btn:active {
    border: 4px solid black;
    border-right-color: white;
    border-bottom-color: white;
}
.btn-pump { background-color: #FF6600; color: white; text-shadow: 1px 1px 0 black;}
.btn-x { background-color: #1DA1F2; color: white; text-shadow: 1px 1px 0 black;}
.btn-tg { background-color: #0088CC; color: white; text-shadow: 1px 1px 0 black;}

.footer {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    background: black;
    width: 100%;
}