/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #0d0e12;
    --text-color: #e0e0e0;
    --primary-color: #7928ca;
    --secondary-color: #ff0080;
    --accent-color: #00dfd8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

/* Background Gradients */
.background-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.2) 0%, rgba(13, 14, 18, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}
.blob-1 { top: -200px; left: -200px; animation: float 10s ease-in-out infinite; }
.blob-2 { bottom: -200px; right: -200px; background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, rgba(13, 14, 18, 0) 70%); animation: float 12s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

/* Header/Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-size: 1.5rem; font-weight: 700; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links a { color: var(--text-color); text-decoration: none; margin-left: 20px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-color); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 1.1;
}
.hero h1 span {
    display: block;
    font-size: 5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(121, 40, 202, 0.5));
}
.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #a0a0a0;
}
.cta-buttons {
    display: flex;
    gap: 20px;
}
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px -10px rgba(255, 0, 128, 0.5);
}
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(255, 0, 128, 0.7);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px -10px rgba(255,255,255,0.1);
}

/* Features Section */
.features {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--primary-color);
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}
.feature-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}
.feature-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
}
.feature-image {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: block;
    transition: transform 0.3s;
}
.feature-card:hover .feature-image {
    transform: scale(1.02);
}

/* Screenshot Preview */
.preview-section {
    padding: 50px;
    text-align: center;
}
.preview-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
    border: 1px solid var(--card-border);
    position: relative;
}
.preview-container img {
    width: 100%;
    display: block;
}
.preview-container img.main-icon {
    width: 150px;
    height: 150px;
    margin: 40px auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(121, 40, 202, 0.6));
}
.glow-effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
    pointer-events: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    margin-top: 50px;
    border-top: 1px solid var(--card-border);
    color: #888;
}
footer a { color: var(--accent-color); text-decoration: none; }

/* Utilities */
.hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.visible { opacity: 1; transform: translateY(0); }
