:root {
    --accent: #00f2fe;
    --accent-dark: #4facfe;
    --glass: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.15);
}

body {
    background: #0b0e14;
    font-family: 'Inter', sans-serif;
    color: white;
    margin: 0;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-wrapper {
    max-width: 450px;
    margin: 40px auto;
    padding: 20px;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Profil Halkası Animasyonu */
.profile-ring {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border: 2px solid var(--accent);
}

.pulse {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.s-link {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.s-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
}

/* Hizmet Çubukları */
.service-container { margin-top: 20px; }
.service-box { margin-bottom: 20px; text-align: left; padding: 0 15px; }
.skill-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 8px;
}
.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
}

/* Aksiyon Grid */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.action-item {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.action-item.wa:hover { background: #25d366; }
.action-item.call { grid-column: span 2; }
.action-item:hover { transform: scale(1.02); }