:root {
    --primary-color: #ff4081; /* Hot pink from assets */
    --secondary-color: #448aff; /* Blue accent from assets */
    --background-color: #121212; /* Dark background */
    --surface-color: #1e1e1e; /* Slightly lighter surface */
    --text-color: #e0e0e0;
    --text-color-dark: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--surface-color);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-button {
    font-weight: 600;
    color: var(--text-color-dark);
    background-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ff669a;
    transform: translateY(-2px);
}

.cta-button.primary {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

/* Hero Section */
#hero {
    padding: 5rem 0;
    text-align: center;
}

#hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Section */
#features {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color-dark);
}

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

.feature-item {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
}

/* CTA Banner */
#cta-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-dark);
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0;
}

#cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

#cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#cta-banner .cta-button {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#cta-banner .cta-button:hover {
     background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: var(--surface-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

