:root {
    --mochi-pink: #FFB7C5;
    --mochi-green: #A8E6CF;
    --mochi-yellow: #FFD93D;
    --mochi-purple: #6C63FF;
    --mochi-cyan: #00D4FF;
    --mochi-dark: #0D0D1A;
    --mochi-deep: #05050F;
    --mochi-light: #FDF6F0;
    --mochi-surface: #1A1A2E;
    --mochi-card: #16213E;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--mochi-deep);
    color: var(--mochi-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mochi-light);
    text-decoration: none;
}

.logo-cube {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--mochi-pink), var(--mochi-cyan));
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 183, 197, 0.4);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--mochi-light);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-weight: 500;
}

nav a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 183, 197, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--mochi-pink);
    color: var(--mochi-deep);
    box-shadow: 0 10px 30px rgba(255, 183, 197, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 183, 197, 0.4);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 4rem;
}

/* Hero Image Styling */
.hero-image-container {
    padding: 2rem !important;
    margin-top: 4rem;
    overflow: hidden;
}

.hero-screenshot {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--mochi-surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--mochi-pink);
}

.feature-card p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--mochi-light);
    text-decoration: none;
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--mochi-pink);
}

.legal-content p {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.legal-content ul {
    margin: 0 0 1.5rem 1.5rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}
