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

body {
    font-family: 'Arial', sans-serif;
    background: #2a152f;
    color: #f1b7ff;
    overflow-x: hidden;
}

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



/* Starry Background */
.stars {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 24px;
    height: 18px;
    opacity: 0.4;
    animation: twinkle 4s infinite;
    transition: opacity 0.3s ease;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    25% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.6;
    }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 0;
    
}

.badge {
    display: inline-block;
    background: rgba(241, 183, 255, 0.2);
    color: #f1b7ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 32px;
    border: 1px solid rgba(241, 183, 255, 0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #f1b7ff, #d8a7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero-content{
    background: rgba(42, 21, 47, 0.7);
    backdrop-filter: blur(8px);
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f1b7ff, #d8a7ff);
    color: #2a152f;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 183, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #f1b7ff;
    border: 2px solid rgba(241, 183, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(241, 183, 255, 0.1);
}

.search-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(241, 183, 255, 0.2);
    background: rgba(241, 183, 255, 0.1);
    color: #f1b7ff;
    font-size: 16px;
}

.search-input::placeholder {
    color: rgba(241, 183, 255, 0.6);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    background: linear-gradient(135deg, #f1b7ff, #d8a7ff);
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 64px 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(241, 183, 255, 0.1);
    border: 1px solid rgba(241, 183, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f1b7ff, #d8a7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2a152f;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-card p {
    opacity: 0.8;
}


/* Newsletter Section */
.newsletter {
    padding: 64px 0;
    position: relative;
    z-index: 10;
}

.newsletter-card {
    background: rgba(241, 183, 255, 0.1);
    border: 1px solid rgba(241, 183, 255, 0.2);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.newsletter p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(241, 183, 255, 0.2);
    background: rgba(241, 183, 255, 0.1);
    color: #f1b7ff;
}

.newsletter-disclaimer {
    font-size: 12px;
    opacity: 0.6;
}
