/* Warm Light Mode Base */
:root {
    --bg-color: #faf9f6;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --primary: #f97316;
    --primary-hover: #ea580c;
    --border: #e5e7eb;
    --card-bg: #ffffff;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.23);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}
.btn-outline:hover {
    background: rgba(0,0,0,0.02);
    border-color: #d1d5db;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
}
.brand span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px 80px 20px;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* The Bento/Mockup Section */
.mockup-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Mockup Frame Base (The Dark UI Contrast) */
.mockup-frame {
    background: #1e1e24; /* Dark UI */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    color: #fff;
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
    transition: transform 0.4s ease;
}
.mockup-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}
.mockup-frame:nth-child(2) {
    transform: perspective(1000px) rotateY(5deg) translateY(20px);
}
.mockup-frame:nth-child(2):hover {
    transform: perspective(1000px) rotateY(0deg) translateY(10px);
}

/* Mac Window Top Bar */
.mockup-header {
    background: #2a2a35;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mac-dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

/* Fake Discord UI */
.discord-chat { padding: 20px; font-size: 0.9rem; }
.discord-msg { display: flex; gap: 12px; margin-bottom: 16px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: #5865F2; display:flex; align-items:center; justify-content:center; font-weight:bold; }
.bot-avatar { background: var(--primary); }
.msg-content h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 1rem; color: #fff;}
.bot-tag { background: #5865F2; font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
.emoji-code { background: #2f3136; padding: 8px; border-radius: 4px; font-family: monospace; letter-spacing: 2px; display: inline-block; margin-top: 8px; border: 1px solid rgba(255,255,255,0.1); }

/* Fake Roblox UI */
.roblox-ui { padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.roblox-modal { background: #ffffff; color: #000; border-radius: 8px; padding: 24px; width: 100%; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.rbx-icon { font-size: 2rem; color: #00b06f; margin-bottom: 10px; }
.rbx-btn { background: #00b06f; color: white; border: none; padding: 12px; width: 100%; border-radius: 4px; font-weight: bold; margin-top: 16px; font-size: 1rem;}

/* Features Section */
.section-title { text-align: center; font-size: 2.5rem; margin: 100px 0 20px 0; color: #111827; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 60px auto; font-size: 1.1rem; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 60px;}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.feature-icon {
    width: 50px; height: 50px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Language Switcher */
.lang-switch { display: flex; gap: 10px; justify-content: center; margin-top: 80px; padding-bottom: 40px; }
.lang-switch a { color: var(--text-muted); text-decoration: none; padding: 6px 12px; border-radius: 6px; font-weight: 500; }
.lang-switch a.active { color: var(--primary); background: rgba(249, 115, 22, 0.1); }

footer { text-align: center; border-top: 1px solid var(--border); padding: 40px 0; color: var(--text-muted); margin-top: 80px; }
