@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --background-color: #121212;
    --primary-green: #00B14F;
    --text-primary: #FFFFFF;
    --text-secondary: #8A8F98;
    --border-color: #363A40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-green), transparent 70%);
    opacity: 0.3;
    animation: move 25s infinite alternate;
}

.shape1 { width: 450px; height: 450px; top: -150px; left: -150px; animation-duration: 30s; }
.shape2 { width: 550px; height: 550px; bottom: -250px; right: -250px; animation-duration: 35s; }
.shape3 { width: 350px; height: 350px; bottom: 50%; right: 50%; transform: translate(50%, 50%); animation-duration: 20s; }
.shape4 { width: 250px; height: 250px; top: 10%; right: 10%; animation-duration: 40s; }
.shape5 { width: 200px; height: 200px; top: 60%; left: 15%; animation-duration: 28s; }

@keyframes move {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(150px, -100px) rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo sup {
    font-size: 10px;
    color: #888;
    vertical-align: super;
}

.landing-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.landing-nav a:hover {
    color: var(--text-primary);
}

.btn-discord-login {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
}

.btn-discord-login:hover {
    background-color: #4a54c9;
}

.landing-main {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-launch-app {
    background-color: var(--primary-green);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-launch-app:hover {
    background-color: #009942;
}

.screenshots {
    margin-top: 80px;
}

.screenshots h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.screenshot {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.screenshot:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.screenshot img {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    max-width: 100%;
}