:root {
    --primary: #00aff0;
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #111111;
    --gray-border: #333333;
    --text-muted: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Sharp Background Implementation */
.bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background: url('/images/background.png') center center no-repeat;
    background-size: cover;
    filter: brightness(0.3);
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
}

/* Sharp Profile Section */
.profile {
    margin-bottom: 48px;
}

.profile-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--white);
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sharp Conversion Buttons */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    text-decoration: none;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-border);
}

.cta-button.primary {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.cta-button.primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Sharp Stats */
.stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.footer {
    margin-top: auto;
    padding-top: 60px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Removing all 'soft' animations and futuristic glows */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
}


