:root {
    --bg-color: #0a0a0a;
    --container-bg: rgba(255, 255, 255, 0.03);
    --accent-color: #ff6600;
    /* Signature Orange */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-hover: rgba(255, 102, 0, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --max-width: 600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #ff660022 0%, #0a0a0a 60%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

/* Header Styles */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--container-bg);
    border: 2px solid var(--accent-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.logo {
    max-width: 100%;
    height: auto;
    /* Inverted filter if the logo is black and we want it to pop on dark? 
       Actually, the logo has orange so we should keep it as is. 
       If it's mostly black, it might need some treatment or a white border. */
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 300px;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--container-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--card-hover);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.1);
}

.link-card.highlight {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}

.link-icon {
    font-size: 1.5rem;
    width: 40px;
    color: var(--accent-color);
}

.link-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.link-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.link-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
    opacity: 1;
    color: var(--accent-color);
}

/* Footer Section */
.social-footer {
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    body {
        padding: 30px 15px;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .link-card {
        padding: 16px 20px;
    }
}