:root {
    --primary-color: #FF3366; /* Vibrant pink accent */
    --secondary-color: #2A2A2A; /* Dark gray for sections */
    --background-dark: #121212; /* Deep black for body */
    --text-light: #FFFFFF; /* White text */
    --text-gray: #B0B0B0; /* Softer gray for subtitles, improved contrast */
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2); /* Subtle shadows for depth */
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.3); /* Enhanced on hover */
    --border-radius: 16px; /* Consistent rounded corners */
    --transition-ease: all 0.3s ease-out; /* Smooth transitions */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.7; /* Improved line height for readability */
    font-size: 16px; /* Base font size for consistency */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Slightly increased for better mobile spacing */
}

/* Star Background */
@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes shooting-star {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg);
        opacity: 0;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered content for modern feel */
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 80px 0; /* Added vertical padding for breathing room */
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.stars:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
    opacity: 0.8;
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 150px 190px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 210px 250px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 270px 320px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: twinkle 6s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
}

.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.shooting-stars span {
    position: absolute;
    right: -150px;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transform-origin: right;
}

.shooting-stars span:nth-child(1) {
    top: 20%;
    animation: shooting-star 5s linear infinite;
    animation-delay: 0s;
    width: 200px;
}

.shooting-stars span:nth-child(2) {
    top: 35%;
    animation: shooting-star 7s linear infinite;
    animation-delay: 2s;
    width: 120px;
}

.shooting-stars span:nth-child(3) {
    top: 50%;
    animation: shooting-star 6s linear infinite;
    animation-delay: 4s;
    width: 180px;
}

.shooting-stars span:nth-child(4) {
    top: 65%;
    animation: shooting-star 8s linear infinite;
    animation-delay: 1s;
    width: 140px;
}

.shooting-stars span:nth-child(5) {
    top: 80%;
    animation: shooting-star 5.5s linear infinite;
    animation-delay: 3s;
    width: 160px;
}

/* Ensure content is above stars */
.hero .container {
    position: relative;
    z-index: 3;
    text-align: center; /* Centered text for hero */
    max-width: 800px; /* Constrain width for better readability */
}

/* Add glow effect to text */
.hero h1 {
    font-size: 4rem; /* Larger for impact */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255,255,255,0.4); /* Enhanced glow */
}

.hero .subtitle {
    font-size: 1.6rem;
    color: var(--text-gray);
    margin-bottom: 3rem; /* More space before buttons */
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem; /* Slightly larger for touch-friendliness */
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #FF4D7F; /* Lighter pink on hover */
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px); /* Subtle lift */
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Talent Section */
.talent {
    padding: 120px 0; /* Increased padding for white space */
    background: var(--secondary-color);
    text-align: center;
}

.talent h2 {
    font-size: 3rem; /* Larger headings */
    margin-bottom: 4rem;
    font-weight: 700;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Switched to grid for better responsiveness */
    gap: 2rem; /* Increased gap */
    justify-content: center;
}

.talent-card {
    background: rgba(255,255,255,0.05); /* Subtle background for depth */
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-ease);
    box-shadow: var(--shadow-soft);
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.talent-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: var(--transition-ease);
    margin-bottom: 1rem;
}

.talent-card:hover img {
    transform: scale(1.05);
    border-color: var(--text-light);
}

.talent-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creator-alias {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.platform-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-ease);
}

.badge:hover {
    transform: scale(1.05);
}

.badge.youtube {
    background: #FF0000;
    color: white;
}

.badge.tiktok {
    background: #000000;
    color: white;
}

.badge.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.follower-count {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.talent-quote {
    color: var(--text-gray);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--background-dark);
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Wider cards */
    gap: 2.5rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-ease);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Why It Works Section */
.why-it-works {
    padding: 120px 0;
    background: var(--gradient);
}

.why-it-works h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '\f058'; /* Font Awesome check circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.benefits-list strong {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--secondary-color);
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--background-dark);
    border: 1px solid var(--text-gray);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-ease);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2); /* Focus ring for accessibility */
    outline: none;
}

textarea {
    height: 160px;
    resize: vertical;
}

button.btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .talent h2, .services h2, .why-it-works h2, .contact h2 {
        font-size: 2.5rem;
    }

    .talent-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 32px;
    }
} 