:root {
    --bg: #05040a;
    --card-bg: rgba(12, 12, 21, 0.95);
    --accent: #ff4b9a;
    --accent-soft: rgba(255, 75, 154, 0.2);
    --text-main: #ffffff;
    --text-muted: #a9a9c2;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --radius-xl: 24px;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1030 0, #05040a 60%);
    color: var(--text-main);
}

body {
    min-height: 100vh;
}

/* Page wrapper */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

/* Glow blobs */
.bg-blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.bg-blur-1 {
    width: 380px;
    height: 380px;
    background: #ff4b9a;
    top: -80px;
    right: -80px;
}

.bg-blur-2 {
    width: 420px;
    height: 420px;
    background: #5b5bff;
    bottom: -100px;
    left: -100px;
}

/* Main card */
.card {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 305px 24px 24px;
    backdrop-filter: blur(28px);
}

.container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* TOP IMAGE */
.hero {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    height: 65%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(12, 12, 21, 1) 85%);
}

/* TEXT */
.content {
    text-align: center;
    padding: 20px 20px 25px;
}

.name {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.tagline {
    font-size: 16px;
    margin: 10px 0 0;
    font-weight: 500;
}

.tagline2 {
    font-size: 15px;
    margin-top: 2px;
    color: #444;
}

/* ICONS */
.links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.icon img {
    width: 32px;
    opacity: 0.85;
    transition: 0.25s;
}

.icon img:hover {
    opacity: 1;
    transform: scale(1.12);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 22px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #ff4b9a, #ff8c5f);
    color: #05040a;
    box-shadow: 0 14px 40px rgba(255, 75, 154, 0.5);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 52px rgba(255, 75, 154, 0.7);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 24px rgba(255, 75, 154, 0.55);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* Sections */
.cta-section {
    margin-bottom: 22px;
}

.about {
    padding: 14px 14px 16px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, var(--accent-soft), transparent);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.about h2 {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about p {
    margin: 4px 0;
    font-size: 0.92rem;
    line-height: 1.5;
}
