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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #f9f9f9;
    line-height: 1.7;
}

/* ===== HEADER ===== */
header {
    background: #1a1a2e;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94560;
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
    color: #e94560;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    text-align: center;
    padding: 100px 24px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: #e94560;
}

.hero p {
    font-size: 1.15rem;
    color: #aab;
    max-width: 560px;
    margin: 0 auto 36px;
}

.btn {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: #c73652;
    transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.features {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== CONTENT PAGES (Privacy / Terms) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    padding: 60px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: #aab;
    font-size: 0.95rem;
}

.content-wrap {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 24px 60px;
}

.content-wrap h2 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin: 36px 0 12px;
    border-left: 4px solid #e94560;
    padding-left: 12px;
}

.content-wrap p,
.content-wrap li {
    color: #555;
    font-size: 0.97rem;
    margin-bottom: 10px;
}

.content-wrap ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-section p {
    color: #aab;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: #888;
    text-align: center;
    padding: 28px 24px;
    font-size: 0.88rem;
}

footer a {
    color: #e94560;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .footer-links {
    margin-bottom: 10px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
