/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #F72585;
    --secondary: #4CC9F0;
    --accent: #7209B7;
    --dark-bg: #10002B;
    --dark-bg-2: #240046;
    --text-main: #FFFFFF;
    --text-muted: #E0E0E0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(247, 37, 133, 0.3);
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Button */
.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: var(--gradient-main);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(247, 37, 133, 0.8);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(16, 0, 43, 0.8), rgba(16, 0, 43, 0.9)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Cards / Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

/* Features / Mechanism */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(36, 0, 70, 0.5);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(36, 0, 70, 0.8);
}

/* Visuals */
.visual-block {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(114, 9, 183, 0.3);
}

.visual-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.visual-block:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (min-width: 768px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.8rem; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .split-section {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    .split-section > div { flex: 1; }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

footer {
    text-align: center;
    padding: 40px;
    background: #0a001a;
    color: #666;
    font-size: 0.9rem;
}
