* { box-sizing: border-box; }

body {
    margin: 0;
    background: #090313;
    color: #eee;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: #0b0416;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    animation: fadeOut 0.8s ease-in-out 1.1s forwards;
}

.shimmer-box {
    width: 220px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(110deg, #1d0937 0%, #31135c 40%, #1d0937 80%);
    background-size: 200% 100%;
    animation: shimmer 1.25s infinite linear;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.navbar {
    width: 100%;
    height: 70px;
    background: rgba(40, 10, 80, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: fixed;
    top: 0;
    z-index: 70;
    border-bottom: 1px solid rgba(120, 60, 200, 0.2);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px #7b22ff55);
}

.nav-title {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    color: #e6d3ff;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    transition: 0.3s ease;
}

.nav-item {
    color: #dfc9ff;
    font-weight: 500;
    font-size: 0.98rem;
    transition: 0.25s;
    text-decoration: none;
}

.nav-item:hover {
    color: #b977ff;
}

.nav-disabled {
    opacity: 0.35;
    pointer-events: none;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger div {
    width: 26px;
    height: 3px;
    background: #d1b4ff;
    border-radius: 3px;
}

@media (max-width: 800px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 18px 0;
        background: rgba(40, 10, 80, 0.85);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }
}

.discord-btn {
    position: fixed;
    top: 90px;
    right: 22px;
    z-index: 70;
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(80, 25, 160, 0.4);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.discord-btn img {
    width: 24px;
    filter: brightness(1.4);
}

.discord-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 18px #7b22ff80;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #140626 0%, #090313 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
      animation: overlayFade 4.2s ease-out 1.6s forwards;
    pointer-events: none;
}

.intro-logo {
    width: 220px;
    filter: drop-shadow(0 0 22px #7b22ff);
      animation: logoIntro 3.3s ease-out 1.6s forwards;
}

@keyframes logoIntro {
    0% { transform: scale(0.6) translateY(40px) rotate(0deg); opacity: 0; }
    20% { transform: scale(1) translateY(0) rotate(0); opacity: 1; }
    45% { transform: scale(1.08) rotate(360deg); opacity: 1; }
    80% { transform: translateY(-140px) rotate(360deg); opacity: 1; }
    100% { transform: translateY(-220px) rotate(360deg); opacity: 0; }
}

@keyframes overlayFade {
    0% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

.site-content {
    opacity: 0;
    animation: contentFade 1s ease-out forwards;
    animation-delay: 4.2s;
}

@keyframes contentFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero {
    text-align: center;
    padding-top: 180px;
}

.hero-title {
    font-size: 3rem;
    letter-spacing: 0;
    color: #c79aff;
    text-shadow: 0 0 22px #7b22ff50;
    margin: 0;
}

.menacing-under-slogan {
    width: 120px;
    margin-top: 25px;
    filter: drop-shadow(0 0 16px #7b22ff55);
}

.underline {
    width: 180px;
    height: 3px;
    margin: 8px auto;
    background: linear-gradient(90deg, #6a1bff, #b64cff);
    border-radius: 3px;
}

.underline.small {
    width: 140px;
}

.hero-subtitle {
    opacity: 0.77;
    font-size: 1.1rem;
    margin-top: 12px;
    color: #d9baff;
}

#dev-team {
    text-align: center;
    margin-top: 260px;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 28px;
}

.heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #ff4dd2;
    animation: pulse 1.7s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.orbit-container {
    position: relative;
    width: 330px;
    height: 330px;
    margin: 40px auto 0 auto;
    transform: translateY(20px);
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(150, 80, 255, 0.25);
}

.orbit-ring.outer { inset: 0; }
.orbit-ring.inner { inset: 45px; border-color: rgba(150, 80, 255, 0.4); }

.dev-wrapper {
    position: absolute;
    width: 95px;
    height: 95px;
    text-align: center;
}

.pfp-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(170, 110, 255, 0.28);
    box-shadow: 0 0 16px #7b22ff45;
}

.orbit-item {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    transition: .25s ease;
}

.dev-wrapper:hover .orbit-item {
    transform: scale(1.13);
}

.dev-name {
    opacity: 0;
    position: absolute;
    top: 108%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(50, 20, 90, 0.82);
    padding: 4px 12px;
    border-radius: 8px;
    color: #e7c1ff;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(5px);
    transition: .25s ease;
}

.dev-wrapper:hover .dev-name {
    opacity: 1;
}

.pos-top { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.pos-left { top: 68%; left: 6%; transform: translate(-50%, -50%); }
.pos-right { top: 68%; right: 6%; transform: translate(50%, -50%); }

.invite-text {
    margin-top: 20px;
    color: #d7b7ff;
    font-size: 1.05rem;
    padding: 0 16px;
}

.invite-link {
    color: #b977ff;
    text-decoration: underline;
}

.footer {
    margin-top: 120px;
    text-align: center;
    padding: 40px 0;
    color: #b995ff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(120, 60, 200, 0.2);
    background: linear-gradient(180deg, rgba(30,0,50,0.06), rgba(20,0,30,0.35));
}

.kira-gif {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 75px;
    opacity: 0.8;
    z-index: 30;
    pointer-events: none;
    filter: drop-shadow(0 0 6px #b84cffaa);
}

@media (max-width: 600px) {
    .hero { padding-top: 150px; }
    .hero-title { font-size: 2.3rem; }
    #dev-team { margin-top: 220px; }
    .orbit-container { transform: scale(0.9) translateY(10px); }
    .discord-btn { top: 80px; right: 16px; }
}
.killerqueen-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px 0;
    position: relative;
}


.killerqueen {
.killerqueen {
    width: 170px;
    opacity: 0.95;
    transform-origin: 50% 60%;
    filter:
        drop-shadow(0 0 12px #ff7bff80)
        drop-shadow(0 0 25px #b300ff50);
    mix-blend-mode: screen;
    animation: kqFloat 3s ease-in-out infinite;
        mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}


    filter:
        drop-shadow(0 0 10px #ff7bff70)
        drop-shadow(0 0 20px #b300ff40);
    mix-blend-mode: screen;
    animation: kqFloat 3s ease-in-out infinite;
}

/* subtle floating to make it feel “alive” */
@keyframes kqFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
