:root {
    --primary: #e62117;
    --primary-glow: rgba(230, 33, 23, 0.4);
    --bg-dark: #120c02;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(0, 0, 0, 0.6);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 12, 2, 0.7), rgba(18, 12, 2, 0.85)), 
                url('bg.png') no-repeat center center/cover;
    z-index: -1;
    transform: scale(1.1);
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.container {
    width: 100%;
    max-width: 480px;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, var(--primary), #ff8a00);
    margin: 0 auto 20px;
    box-shadow: 0 0 25px var(--primary-glow);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 300;
}

/* Links Section */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card.featured {
    background: linear-gradient(45deg, rgba(255, 68, 31, 0.15), rgba(255, 138, 0, 0.15));
    border-color: rgba(255, 68, 31, 0.4);
}

.link-card.featured:hover {
    background: linear-gradient(45deg, rgba(255, 68, 31, 0.25), rgba(255, 138, 0, 0.25));
    box-shadow: 0 10px 30px rgba(255, 68, 31, 0.2);
}

.icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-right: 16px;
    color: var(--text-main);
}

.featured .icon-box {
    background: var(--primary);
    color: #fff;
}

.text-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sublabel {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.arrow {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    transform: translateX(5px);
    color: #fff;
}

/* Footer Information */
.footer {
    margin-top: 30px;
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 400px) {
    .container {
        padding: 30px 15px;
    }
    .title {
        font-size: 1.75rem;
    }
}
