@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0b0c10;
    --text-color: #c5c6c7;
    --accent: #66fcf1;
    --accent-dark: #45a29e;
    --card-bg: rgba(31, 40, 51, 0.7);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: #fff;
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--accent);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1f2833 0%, #0b0c10 100%);
}

.hero .content {
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    background: rgba(11, 12, 16, 0.6);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 252, 241, 0.2);
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--bg-color);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--accent);
    transform: translateY(-2px);
    color: var(--bg-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    margin-top: 2rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-color);
}

.links {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.links a {
    margin: 0 10px;
}

.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(102, 252, 241, 0.1);
    border-color: rgba(102, 252, 241, 0.3);
}

.container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.contact-card, .faq {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
}

.faq h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.faq h3:first-child {
    margin-top: 0;
}

.policy-container h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* Simple star background effect */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
