:root {
    --discord-color: #5865F2;
    --youtube-color: #FF0000;
    --roblox-color: #F8F8F8;
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-gradient: linear-gradient(135deg, #FF0000 0%, #5865F2 50%, #ffffff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}


.rainbow-bg {
    дел position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.rainbow-stripe {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 0, 0, 0.1) 48%,
            rgba(88, 101, 242, 0.1) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 55%);
    animation: stripeMove 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes stripeMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}


.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.archive-password-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
    backdrop-filter: blur(5px);
}

.mono-text {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}


.features {
    padding: 8rem 0;
    perspective: 2000px;
    overflow: visible;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    transform: rotateX(10deg) rotateZ(-2deg);
}


.service-folder {
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, #2b2b30, #18181b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.5),
        0 2px 4px -1px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 0 16px 16px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.8rem;
}


.service-folder::before {
    content: 'TOP_SECRET//LOGS';
    position: absolute;
    top: -28px;
    left: -1px;
    height: 28px;
    padding: 0 1.5rem;
    background: linear-gradient(to bottom, #2b2b30, #222);
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 28px;
    border-radius: 6px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    z-index: 6;
    letter-spacing: 1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-folder.discord::before {
    content: 'CASE_FILE: DISCORD';
}

.service-folder.youtube::before {
    content: 'CASE_FILE: YOUTUBE';
}



.service-folder:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.6),
        0 10px 10px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #333;
    z-index: 15;
}

.service-folder h3 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 7;
    letter-spacing: -0.5px;
}


.service-folder i {
    transition: all 0.3s ease;
}

.service-folder:hover i {
    filter: drop-shadow(0 0 15px currentColor);
    transform: scale(1.1);
}


.service-folder.discord {
    border-left: 4px solid var(--discord-color);
}

.service-folder.youtube {
    border-left: 4px solid var(--youtube-color);
}




.service-document {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    background-color: #f4f1ea;
    /* Warm paper color */
    background-image:
        linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
        linear-gradient(#eee .1em, transparent .1em);
    background-size: 100% 1.2em;
    color: #333;
    padding: 2.5rem;
    border-radius: 2px;
    transform-origin: top center;
    transform: translateY(-80%) scale(0.9) rotateX(-5deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #d3d3d3;
}


.service-document::after {
    content: 'CLASSIFIED';
    position: absolute;
    top: 2rem;
    right: 2rem;
    border: 3px solid rgba(255, 0, 0, 0.3);
    color: rgba(255, 0, 0, 0.3);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transform: rotate(-15deg);
    border-radius: 8px;
    font-family: sans-serif;
    pointer-events: none;
}



.service-item-wrapper {
    position: relative;
    transition: all 0.4s ease;
    perspective: 1000px;
}

.service-item-wrapper:hover .service-document {
    transform: translateY(20px) scale(1) rotateX(0deg);
    opacity: 1;
    z-index: 20;
}

.service-item-wrapper:hover {
    margin-bottom: 220px;
    /* More space for the document */
    z-index: 100;
}

.service-document h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 800;
}

.service-document p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.doc-stats {
    display: flex;
    gap: 1rem;
    font-family: monospace;
    background: #f0f0f0;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}


.grid,
.card {
    display: none;
    /* Hide old classes just in case */
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(67, 181, 129, 0.1);
    color: #43b581;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}


.steps-section {
    padding: 6rem 0;
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}


.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(88, 101, 242, 0.5),
            rgba(255, 68, 68, 0.5) 50%,
            rgba(255, 255, 255, 0.5));
    z-index: 0;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    pointer-events: none;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #111;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.step-card:nth-child(1) .step-icon {
    border-color: var(--discord-color);
    color: var(--discord-color);
}

.step-card:nth-child(2) .step-icon {
    border-color: var(--youtube-color);
    color: var(--youtube-color);
}

.step-card:nth-child(3) .step-icon {
    border-color: #43b581;
    color: #43b581;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-text {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
}


.faq {
    padding: 6rem 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
}


footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-align: center;
}


.auth-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
    max-width: 400px;
    margin: 4rem auto;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 1rem;
    border-radius: 4px;
}


.background-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        linear-gradient(transparent 95%, rgba(88, 101, 242, 0.1) 95%),
        linear-gradient(90deg, transparent 95%, rgba(88, 101, 242, 0.1) 95%);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    transform: perspective(500px) rotateX(20deg) scale(1.5);
    opacity: 0.4;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(50px);
    }
}


.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: particleMove 60s linear infinite;
    opacity: 0.3;
}

@keyframes particleMove {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px;
    }

    100% {
        background-position: 550px 550px, 390px 410px, 380px 520px;
    }
}


nav {
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    cursor: pointer;
}


.rkn-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(88, 101, 242, 0.05) 0%, transparent 70%);
}

.rkn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.rkn-logo-wrapper {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.rkn-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(255, 68, 68, 0.4);
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
}

.rkn-logo-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 50%;
    animation: rotateRing 15s linear infinite reverse;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.rkn-logo {
    width: 100%;
    height: 100%;
    /* or contain, depending on the GIF */
    border-radius: 50%;

    clip-path: circle(48%);
}

.rkn-tag {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border: 1px solid rgba(255, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.2);
    backdrop-filter: blur(5px);
}

.rkn-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.rkn-desc {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}