/* משתנים ועיצוב כללי */
:root {
    --bg-dark: #090909;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-sub: #a0a0a0;
    --accent-glow: rgba(114, 137, 218, 0.4);
}

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

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--bg-dark);
    /* רקע כהה */
    background: radial-gradient(circle at 50% 10%, #1a1b26 0%, #000000 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* כרטיס הפרופיל */
.profile-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* תמונת פרופיל */
.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 30px var(--accent-glow);
    transition: transform 0.4s ease;
}

.avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

/* כותרת */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

/* רשימת הקישורים */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.link-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

/* תוכן הכפתור */
.left-content { 
    display: flex; 
    align-items: center; 
    gap: 18px; 
}

.icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    font-size: 1.3rem;
    transition: 0.3s;
}

.link-text { 
    font-weight: 600;
    font-size: 1.05rem;
}

.arrow { 
    opacity: 0.5; 
    font-size: 0.9rem;
    transform: translateX(5px); 
    transition: 0.3s; 
}

/* הובאר (Hover) */
.link-item:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5);
}

.link-item:hover .icon-box { 
    background: rgba(255,255,255,0.15); 
    transform: scale(1.1); 
}

.link-item:hover .arrow { 
    opacity: 1; 
    transform: translateX(0); 
    color: #fff;
}

/* צבעי מותג */
.fa-youtube { color: #ff0000; filter: drop-shadow(0 0 8px rgba(255,0,0,0.3)); }
.fa-discord { color: #5865F2; filter: drop-shadow(0 0 8px rgba(88,101,242,0.3)); }
.fa-tiktok { color: #ff0050; filter: drop-shadow(0 0 8px rgba(255,0,80,0.3)); }
.fa-instagram { color: #E1306C; filter: drop-shadow(0 0 8px rgba(225,48,108,0.3)); }
.fa-globe { color: #43b581; filter: drop-shadow(0 0 8px rgba(67,181,129,0.3)); }

/* אנימציות */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* רקע חלקיקים */
.bg-particles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.footer {
    margin-top: 35px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
}
