/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand: #2dc4c2;
    --brand-hover: #26a6a5;
    --dark: #0f172a;
    --bg-dark: #070b15;
    /* Even darker blue for background */
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --radius-lg: 16px;
    --radius-circle: 50%;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: radial-gradient(circle at 50% 0%, #111827 0%, var(--bg-dark) 100%);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ─── HEADER ─── */
.profile {
    margin-bottom: 32px;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-circle);
    border: 4px solid var(--brand);
    margin: 0 auto 20px;
    object-fit: cover;
    background: var(--dark);
    box-shadow: 0 0 30px rgba(45, 196, 194, 0.2);
}

.profile-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    font-size: 24px;
    color: var(--text-white);
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--brand);
    transform: scale(1.2);
}

/* ─── SECTIONS ─── */
.section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 32px 0 16px;
}

/* ─── LINKS ─── */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-card:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
    border-color: rgba(45, 196, 194, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card:hover::before {
    transform: scaleY(1);
}

.link-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
    text-align: center;
    padding-right: 48px;
    /* Offset for the thumb width to center text */
}

.link-title {
    font-weight: 700;
    font-size: 16px;
}

.link-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #ef4444;
    margin-top: 4px;
}

.disabled-link {
    cursor: default;
    opacity: 0.8;
}

.disabled-link:hover {
    transform: none;
    background: var(--glass);
    border-color: rgba(255, 255, 255, 0.1);
}

.disabled-link::before {
    display: none;
}

.link-lock {
    position: absolute;
    right: 20px;
    font-size: 14px;
    color: #ef4444;
}

.link-arrow {
    position: absolute;
    right: 20px;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
}

/* ─── COLLAB SECTION ─── */
.collab-section {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(45, 196, 194, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%);
    padding: 32px 24px;
    border-radius: 24px;
    border: 1px solid rgba(45, 196, 194, 0.2);
    text-align: center;
}

.collab-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.collab-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.collab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.collab-btn:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 196, 194, 0.3);
}

/* ─── FOOTER ─── */
footer {
    margin-top: 64px;
    padding-bottom: 24px;
}

.dw-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.dw-logo img {
    height: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
    body {
        padding: 24px 16px;
    }
}