:root {
    --bg-color: #0f0f13;
    --text-color: #ffffff;
    --accent-color: #7b2cbf;
    --accent-gradient: linear-gradient(45deg, #7b2cbf, #ff00ff);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid 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;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem;
    background: linear-gradient(rgba(15, 15, 19, 0.8), rgba(15, 15, 19, 0.9)), url('banner.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 3rem;
}

.cta-button {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.4);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 10%;
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    margin-top: 0;
    color: #fff;
}

.feature-card p {
    color: #aaa;
}

.content-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 1rem;
}

.content-section h1 {
    margin-top: 0;
}

.content-section a {
    color: #ff00ff;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    border-top: var(--glass-border);
    margin-top: 4rem;
}

footer a {
    color: #888;
    text-decoration: none;
    margin: 0 1rem;
}

footer a:hover {
    color: #fff;
}

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