:root {
    --bg-color: #08080c;
    --card-bg: #111118;
    --accent-color: #00ff8c; /* Neon Lime Green to match script */
    --text-color: #ffffff;
    --text-dim: #949494;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Navigation --- */
nav {
    height: var(--nav-height);
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px; /* Slightly larger for visibility */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 140, 0.5));
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 140, 0.8));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- Main Section --- */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.title {
    font-size: 84px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-color);
    margin-bottom: -10px;
    animation: fadeInDown 0.8s ease-out;
}

/* --- Terminal Box --- */
.terminal-wrapper {
    position: relative;
    padding-top: 32px; /* Reserved space for the cat */
}

.terminal-container {
    background: var(--card-bg);
    width: 600px;
    max-width: 90vw;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 140, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 10;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.6;
}

.terminal-body {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 140, 0.02), transparent);
}

#loadstring {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--accent-color);
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.4);
}

.copy-btn.copied {
    background: #27c93f;
    border-color: #27c93f;
}

/* --- Subtext --- */
.subtext {
    font-size: 20px;
    color: var(--text-dim);
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.6s both;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* --- Buttons --- */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.primary-btn {
    background: var(--accent-color);
    color: var(--bg-color); /* Dark text for better contrast on lime */
    box-shadow: 0 10px 20px rgba(0, 255, 140, 0.2);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 140, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Oneko Sprite Style --- */
#oneko {
    image-rendering: pixelated;
    z-index: 1000;
}

/* Response for Mobile */
@media (max-width: 600px) {
    .title { font-size: 60px; }
    .subtext { font-size: 16px; }
    .action-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .btn { text-align: center; }
}
