/* NTK Style - Matrix Green Theme */
:root {
    --bg-dark: #050505;
    --accent-color: #22c55e;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #71717a;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 83, 45, 0.15) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 360px;
    padding: 40px 20px;
    text-align: center;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    padding: 5px;
    background: var(--bg-dark);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.05em;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 10px 0 40px 0;
    line-height: 1.5;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-card:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.icon {
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Footer Styling */
footer {
    margin-top: 60px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    padding-bottom: 8px;
}

.bismillah-tiny { 
    font-family: 'Amiri Quran', serif; 
    font-size: 1.4rem; 
    color: rgba(255, 255, 255, 0.05); 
    direction: rtl; 
    transition: 1s ease-in-out; 
    cursor: default;
}

.bismillah-tiny:hover { 
    color: rgba(255, 255, 255, 0.4); 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}