:root {
    --bg-gradient-start: rgba(58,38,120,1.00);
    --bg-gradient-end: rgba(75,65,170,1.00);
    --text-color: #ffffff;
    --text-muted: rgba(255,255,255,0.6);
    --link-color: #F1D066;
    --link-hover-shadow: #5A1EF0;

    --container-width: 960px;
    --border-radius-lg: 34px;
    --border-radius-sm: 13px;
}

/* Base Reset & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(274deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.nav-brand {
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.nav-brand img { width: 32px; height: 32px; border-radius: 7px; }

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    opacity: 0.9;
    border-bottom: 3px solid rgba(241, 208, 102, 0.65);
    padding: 0 4px;
    position: relative;
    top: 0;
    transition: top 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    opacity: 1;
    background: var(--link-color);
    color: var(--link-hover-shadow);
    border-bottom-color: transparent;
    top: -2px;
    box-shadow: 3px 3px 0 var(--link-hover-shadow);
}

/* Hero Section */
.hero-icon {
    width: 205px;
    height: auto;
    border-radius: 46px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.16), 0 0 2px rgba(0,0,0,0.09);
    margin-bottom: 30px;
}

h1 { font-size: 60px; font-weight: 700; margin-bottom: 10px; }
h2 { font-size: 30px; font-weight: 400; margin-bottom: 30px; opacity: 0.9; }

/* Coming Soon Stamp */
.coming-soon {
    display: inline-block;
    margin: 20px 0 40px;
    padding: 10px 28px;
    border: 4px solid var(--link-color);
    border-radius: 8px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--link-color);
    transform: rotate(-4deg);
    opacity: 0.85;
}

/* Description Text */
.description {
    max-width: 750px;
    margin: 0 auto 60px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.description strong { font-weight: 700; }

/* Feature Sections */
.feature-section {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.feature-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-section p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Pages (privacy, terms, contact) */
.page-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}

.page-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 3px solid rgba(241, 208, 102, 0.65);
    padding: 0 4px;
    position: relative;
    top: 0;
    transition: top 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    border-radius: 2px;
}

.page-content a:hover {
    background: var(--link-color);
    color: var(--link-hover-shadow);
    border-bottom-color: transparent;
    top: -2px;
    box-shadow: 3px 3px 0 var(--link-hover-shadow);
}

/* Contact Portrait */
.contact-portrait {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.95);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    display: block;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 40px 20px;
    background: rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.7;
    border-bottom: 3px solid rgba(241, 208, 102, 0.45);
    padding: 0 4px;
    position: relative;
    top: 0;
    transition: top 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, opacity 0.15s ease;
    border-radius: 2px;
}

footer a:hover {
    opacity: 1;
    background: var(--link-color);
    color: var(--link-hover-shadow);
    border-bottom-color: transparent;
    top: -2px;
    box-shadow: 3px 3px 0 var(--link-hover-shadow);
}

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 20px; }
    .nav-links { display: none; }
    .hero-icon { width: 150px; }
    .feature-section h3 { font-size: 20px; }
}
