/* CONFIG GERAL */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', monospace; }
:root { --bg: #0d1117; --panel: rgba(22, 27, 34, 0.95); --border: #30363d; --text: #c9d1d9; --green: #238636; --blue: #58a6ff; --red: #da3633; }
body { background-color: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; position: relative; overflow-x: hidden; }

/* BOOT */
#bootOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 1s ease-out; cursor: pointer; }
.boot-text { font-family: 'Courier New', monospace; font-size: 1.5rem; color: var(--green); text-shadow: 0 0 10px var(--green); border-right: 2px solid var(--green); animation: blinkCursor 0.7s infinite; }
@keyframes blinkCursor { 0%, 100% { border-color: transparent; } 50% { border-color: var(--green); } }

/* MATRIX & HEADER */
#matrixCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #0d1117; }
header { background: var(--panel); border-bottom: 1px solid var(--border); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(5px); }
.logo-area { font-size: 1.3rem; font-weight: bold; color: white; display: flex; align-items: center; gap: 10px; }
.tag { padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; color: white; font-weight: 800; letter-spacing: 1px; }
.header-controls { display: flex; gap: 15px; align-items: center; }
.btn-icon { background: none; border: 1px solid var(--border); color: var(--green); padding: 5px 10px; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-icon:hover { background: var(--green); color: white; }
.utc-box { font-size: 0.9rem; color: var(--blue); font-weight: bold; }

/* NEWS TICKER */
.news-ticker-container { background: #000; border-bottom: 1px solid var(--border); display: flex; align-items: center; overflow: hidden; height: 35px; font-family: 'Courier New', monospace; }
.ticker-label { background: var(--red); color: #fff; padding: 0 15px; height: 100%; display: flex; align-items: center; font-weight: bold; font-size: 0.8rem; z-index: 10; box-shadow: 5px 0 10px rgba(0,0,0,0.5); }
.ticker-wrap { width: 100%; overflow: hidden; white-space: nowrap; }
.ticker-move { display: inline-block; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker-item { display: inline-block; padding: 0 30px; font-size: 0.9rem; color: var(--green); }
.ticker-item i { margin-right: 5px; color: var(--red); }
@keyframes ticker { 0% { transform: translate3d(100%, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }
.ticker-wrap:hover .ticker-move { animation-play-state: paused; }

/* STATUS BAR */
.status-bar { max-width: 1200px; margin: 20px auto 0; padding: 10px 20px; background: rgba(35, 134, 54, 0.1); border: 1px solid var(--green); border-radius: 6px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; font-size: 0.85rem; color: #fff; }
.status-item { display: flex; align-items: center; gap: 8px; }

/* LAYOUT */
main { max-width: 1200px; margin: 20px auto; padding: 0 20px; flex: 1; width: 100%; }
.top-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.panel { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.panel-header { margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 10px; color: white; }
.panel-header h2 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }

/* ABAS (TABS - NOVO ESTILO) */
.tabs-header { display: flex; gap: 10px; border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 15px; }
.tab-btn { background: transparent; border: 1px solid transparent; color: #8b949e; padding: 5px 10px; cursor: pointer; border-radius: 4px; transition: 0.3s; font-size: 0.9rem; }
.tab-btn:hover { color: white; background: rgba(255,255,255,0.05); }
.tab-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(88, 166, 255, 0.1); }
.tool-row { margin-bottom: 15px; }

/* INPUTS/BOTOES */
input, select, textarea { width: 100%; background: #010409; border: 1px solid var(--border); color: var(--blue); padding: 10px; border-radius: 6px; margin-bottom: 10px; font-family: monospace; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: none; }
.dork-row { display: flex; gap: 10px; }
button { cursor: pointer; border: none; border-radius: 4px; font-weight: bold; transition: 0.2s; }
.btn-action { width: 100%; padding: 12px; background: var(--green); color: white; }
.btn-action:hover { background: #fff; color: #000; box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.btn-small { padding: 8px 15px; color: white; font-size: 0.8rem; }

/* GRID */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.tool-card { background: var(--panel); border: 1px solid var(--border); padding: 15px; border-radius: 8px; transition: 0.2s; }
.tool-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.tool-card h3 { color: #fff; margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 8px; font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.link-list a { display: block; text-decoration: none; color: var(--text); background: rgba(255,255,255,0.03); padding: 8px 12px; border-radius: 4px; margin-bottom: 5px; font-size: 0.9rem; border-left: 2px solid transparent; transition: 0.2s; }
.link-list a:hover { background: #21262d; color: white; border-left-color: var(--green); padding-left: 15px; }

/* FOOTER & MODAL */
footer { margin-top: 50px; background: #010409; border-top: 2px solid var(--red); padding: 30px; text-align: center; font-size: 0.9rem; color: #8b949e; }
.footer-content { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 20px; align-items: center; }
.creator-name { color: #fff; text-decoration: none; font-weight: bold; transition: 0.3s; }
.creator-name:hover { color: var(--red); text-shadow: 0 0 10px var(--red); }
.footer-social a { color: #8b949e; margin-left: 15px; font-size: 1.2rem; transition: 0.3s; }
.footer-social a:hover { color: white; transform: scale(1.1); }
.btn-donate { background: #21262d; border: 1px solid var(--green); color: var(--green); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; cursor: pointer; margin-left: 10px; margin-top: 5px; display: inline-flex; align-items: center; gap: 6px; }
.btn-donate:hover { background: var(--green); color: white; box-shadow: 0 0 15px var(--green); }

.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; justify-content: center; align-items: center; backdrop-filter: blur(5px); animation: fadeIn 0.3s; }
.modal-content { background: #161b22; border: 1px solid var(--green); padding: 30px; border-radius: 12px; text-align: center; width: 90%; max-width: 400px; position: relative; animation: slideUp 0.3s; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { position: absolute; top: 10px; right: 15px; color: #8b949e; cursor: pointer; font-size: 1.5rem; }
.pix-key-box { display: flex; gap: 10px; margin-top: 20px; }
.pix-key-box input { margin-bottom: 0; text-align: center; color: var(--green); font-weight: bold; }
.pix-key-box button { width: 50px; background: #21262d; border: 1px solid var(--border); color: white; }
.pix-icon { font-size: 3rem; color: #32bcad; margin-bottom: 15px; display: block; }

@media (max-width: 768px) { .top-split { grid-template-columns: 1fr; } .status-bar { flex-direction: column; gap: 10px; } .hide-mobile { display: none; } .footer-content { flex-direction: column; text-align: center; } }
/* --- SEO CONTENT (PARA ADSENSE) --- */
.seo-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.seo-content h2 {
    color: var(--blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.seo-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-left: 3px solid var(--green);
    padding-left: 10px;
}

.legal-links {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.legal-links a {
    color: #8b949e;
    text-decoration: none;
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-grid { grid-template-columns: 1fr; }
}