:root {
    --bg-dark: #0a0a0a;
    --bg-gradient: radial-gradient(circle at top right, #1f1807 0%, #0a0a0a 100%);
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #cc9900;
    --text-main: #fafafa;
    --text-muted: #ababab;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-hover: rgba(212, 175, 55, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeIn 1s ease-out forwards;
}

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

.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.logo-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.logo-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    color: var(--bg-dark);
    font-size: 2.8rem;
    font-weight: 600;
}

.profile h1 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.profile p {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    text-decoration: none;
    color: var(--text-main);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-weight: 400;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.link-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-icon-left {
    font-size: 1.2rem;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.link-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--glass-hover);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.link-btn:hover::before {
    transform: translateX(100%);
}

.link-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.link-btn:hover .link-icon {
    transform: translate(4px, -4px);
}

.link-btn.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(153, 122, 0, 0.1));
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.link-btn.highlight .link-icon {
    transform: none; /* Reset the arrow transform for the star */
}

.link-btn.highlight:hover .link-icon {
    transform: rotate(72deg) scale(1.2);
}

.link-btn.highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(153, 122, 0, 0.2));
    border-color: var(--gold);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

.footer {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.6;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .profile h1 {
        font-size: 1.8rem;
    }
    
    .link-btn {
        padding: 1.1rem 1.4rem;
        font-size: 1rem;
        border-radius: 14px;
    }
}
