@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --glow: #00d2ff;
    --accent: #ff007a;
    --bg: #0d0d0f;
    --card-bg: rgba(10, 10, 15, 0.78);
    --border: rgba(0, 210, 255, 0.14);
    --text: #e8f7ff;
    --muted: #a8b7c0;
    --shadow: 0 0 30px rgba(0, 210, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        linear-gradient(-45deg, #111216, #1a1b20, #0c0d10, #1c1d22);
    background-size: 400% 400%;
    animation: moveGradient 12s ease infinite;
    min-height: 100vh;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#waves {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background-color: #040406;
}

.bg-grid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 210, 255, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: -1;
    pointer-events: none;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    background: rgba(8, 10, 14, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--glow);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

.nav-logo img {
    width: 38px;
    border-radius: 8px;
    filter: drop-shadow(0 0 6px rgba(255, 55, 55, 0.8));
    transition: 0.25s;
}

.nav-logo img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(255, 55, 55, 1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #c7d4dd;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: 0.25s;
}

.nav-links a img {
    width: 18px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--glow);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 18px rgba(0, 210, 255, 0.08);
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 40px 0 70px;
}

.hero {
    text-align: center;
    padding: 48px 20px 22px;
}

.badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    color: var(--glow);
    background: rgba(0, 210, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.08);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 0 18px rgba(0, 210, 255, 0.12);
}

.hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

.panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.steps-panel {
    display: grid;
    gap: 22px;
}

.step-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--glow);
    border: 1px solid var(--border);
    background: rgba(0, 210, 255, 0.06);
    box-shadow: inset 0 0 18px rgba(0, 210, 255, 0.08);
}

.step-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 1.02rem;
}

.image-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
}

.image-card img {
    display: block;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 14px;
    transition: 0.3s ease;
}

.image-card img:hover {
    transform: scale(1.01);
}

.tip-box {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 0, 122, 0.18);
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.08), rgba(0, 210, 255, 0.05));
}

.tip-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.tip-box p {
    color: var(--muted);
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 34px 20px 42px;
    color: #6e7a83;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
}

#notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0f;
    border: 1px solid var(--glow);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    z-index: 20000;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#notification.show {
    bottom: 30px;
}

#hack-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: #00ffff;
    font-family: monospace;
    font-size: 14px;
    padding: 20px;
    z-index: 999999;
    display: none;
}

#hack-screen.active {
    display: block;
}

#hack-text {
    white-space: pre-wrap;
    animation: blink 0.05s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.8; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 16px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.65rem;
        padding: 9px 10px;
    }

    .container {
        width: min(94%, 100%);
        padding-top: 20px;
    }

    .hero {
        padding-top: 20px;
    }

    .step-card {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .panel {
        padding: 16px;
        border-radius: 18px;
    }

    .hero p {
        font-size: 1rem;
    }
}

    .tabs-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.device-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: #cfefff;
    padding: 12px 18px;
    border-radius: 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: 0.25s ease;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    color: var(--glow);
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 0 18px rgba(0, 210, 255, 0.12);
    transform: translateY(-2px);
}

.tab-btn.active {
    color: #001018;
    background: linear-gradient(135deg, var(--glow), #7ee7ff);
    border-color: transparent;
    box-shadow: 0 0 22px rgba(0, 210, 255, 0.28);
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 22px;
    animation: fadeTab 0.25s ease;
}

.tab-content.active {
    display: flex;
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-box {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
}

.server-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--glow);
    font-size: 1rem;
    margin-bottom: 18px;
}

.copy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.copy-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.copy-label {
    display: block;
    margin-bottom: 10px;
    color: #9db0bb;
    font-size: 0.95rem;
    font-weight: 700;
}

.copy-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-row input {
    flex: 1;
    min-width: 160px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(8, 10, 15, 0.9);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    outline: none;
}

.copy-btn {
    border: 1px solid var(--border);
    background: rgba(0, 210, 255, 0.08);
    color: var(--glow);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    cursor: pointer;
    transition: 0.25s ease;
    min-width: 120px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.35);
}

.copy-btn.copied {
    background: linear-gradient(135deg, var(--glow), #7ee7ff);
    color: #001018;
    border-color: transparent;
}

.image-bed {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
}

.image-bed img {
    display: block;
    width: 300px;
    max-width: 100%;
    border-radius: 14px;
    transition: 0.3s ease;
}

.step-content a,
.tip-box a,
.hero a,
.server-box a {
    color: var(--glow);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: 0.25s ease;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.18);
}

.step-content a::after,
.tip-box a::after,
.hero a::after,
.server-box a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--glow), transparent);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: 0.25s ease;
    opacity: 0.9;
}

.step-content a:hover,
.tip-box a:hover,
.hero a:hover,
.server-box a:hover {
    color: #7ee7ff;
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.35);
}

.step-content a:hover::after,
.tip-box a:hover::after,
.hero a:hover::after,
.server-box a:hover::after {
    transform: scaleX(1);
}

.main-logo { 
    /* VOLTADO AO TAMANHO ORIGINAL DO SEU CSS */
    width: 340px !important; 
    height: auto;
    filter: drop-shadow(0 0 16px rgb(255, 0, 0)); 
    margin-bottom: 25px; 
    transition: 0.3s; 
    display: block;
    margin: 0 auto;
   
}


@media (max-width: 600px) {
    /* VOLTADO AO TAMANHO ORIGINAL DO SEU CSS */
    .main-logo { width: 130px !important; } 
    h1 { font-size: 2rem; }
    .main-ip { font-size: 0.8rem !important; width: 100%; padding: 15px 10px !important; }
    .info-grid, .plans-grid, .gallery-grid { grid-template-columns: 1fr !important; }
    .nav-logo img{ width: 3px; background:transparent; filter: drop-shadow(0 0 4px rgb(255, 41, 41)); transition:0.2s; }
    .nav-links { width: 300px; }
   
}