* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0A0118;
    color: #F5F5F5;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
header {
    padding: 20px 0;
    border-bottom: 1px solid #1A0A35;
    position: sticky;
    top: 0;
    background: #0A0118;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 22px;
    font-weight: 800;
    color: #E040FB;
    letter-spacing: 4px;
}

.logo span {
    font-size: 10px;
    letter-spacing: 6px;
    color: #9B6FD4;
}

nav a {
    color: #9B6FD4;
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    transition: color 0.2s;
}

nav a:hover { color: #E040FB; }

/* HERO */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top,
        #1A0A35 0%, #0A0118 70%);
}

.tagline {
    font-size: 11px;
    letter-spacing: 6px;
    color: #00E5FF;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #E040FB, #7B2FBE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 18px;
    color: #9B6FD4;
    max-width: 600px;
    margin: 0 auto 32px;
}

.badge {
    display: inline-block;
    background: #1A0A35;
    border: 1px solid #7B2FBE;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: #E040FB;
}

/* CREATORS */
.creators {
    padding: 80px 0;
}

.creators h3, .about h3, .contact h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: #F5F5F5;
}

.section-subtitle {
    text-align: center;
    color: #9B6FD4;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.creator-card {
    background: #100828;
    border: 1px solid #1A0A35;
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s;
}

.creator-card:hover {
    border-color: #7B2FBE;
}

.creator-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
    color: white;
}

.creator-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.creator-card .niche {
    font-size: 11px;
    letter-spacing: 3px;
    color: #00E5FF;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.creator-card p {
    font-size: 14px;
    color: #9B6FD4;
    margin-bottom: 16px;
}

.creator-card a {
    font-size: 13px;
    color: #E040FB;
    text-decoration: none;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: #0D0520;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.about-item {
    text-align: center;
}

.about-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.about-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #E040FB;
}

.about-item p {
    font-size: 14px;
    color: #9B6FD4;
}

/* CONTACT */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact p {
    color: #9B6FD4;
    margin: 16px 0 32px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7B2FBE, #E040FB);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.2s;
}

.cta-button:hover { opacity: 0.85; }

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid #1A0A35;
    text-align: center;
}

footer p {
    color: #4A3A6A;
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: #9B6FD4;
    text-decoration: none;
    font-size: 13px;
}

.footer-links span {
    color: #4A3A6A;
    margin: 0 8px;
}

.footer-note {
    font-size: 11px;
    color: #4A3A6A;
    max-width: 500px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h2 { font-size: 32px; }
    nav { display: none; }
}