:root {
    --primary: #007AFF;
    --primary-glow: rgba(0, 122, 255, 0.5);
    --bg-dark: #0A0C10;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --success: #32D74B;
}

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

body {
    background-color: var(--bg-dark);
    background-image: url('assets/bg_3d.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 20px;
    perspective: 1000px; /* 3D derinlik için */
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 16, 0.7); /* Görseli biraz karartmak için */
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 18, 24, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.8s ease-out;
    transform: rotateX(5deg); /* Hafif 3D eğim */
    transition: transform 0.5s ease;
}

.container:hover {
    transform: rotateX(0deg) scale(1.02); /* Üzerine gelince düzelir ve büyür */
}

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

.profile-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), #00D1FF);
    box-shadow: 0 0 20px var(--primary-glow);
}

.profile-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-dark);
    padding: 3px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    margin-bottom: 35px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.stats-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(5px);
}

.link-icon {
    font-size: 24px;
    margin-right: 16px;
}

.link-content {
    flex: 1;
    text-align: left;
}

.link-content h3 {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 2px;
}

.link-content p {
    font-size: 12px;
    color: var(--text-dim);
}

.chevron {
    color: var(--text-dim);
    font-weight: 300;
    transition: 0.3s;
}

.link-card:hover .chevron {
    color: var(--primary);
    transform: translateX(3px);
}

.main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
    filter: brightness(1.1);
}

.tg-icon {
    width: 24px;
    height: 24px;
}

footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 5px;
}

/* --- MOBİL UYUMLULUK (Responsive) --- */
@media (max-width: 480px) {
    body {
        padding: 15px;
        background-attachment: scroll; /* Mobil performansı ve uyumluluğu için */
    }

    .container {
        padding: 30px 20px;
        border-radius: 30px;
        transform: none !important; /* Mobilde 3D eğimi kaldırıyoruz */
    }

    .container:hover {
        transform: scale(1.01); /* Mobilde sadece hafif büyüme */
    }

    .profile-ring {
        width: 110px;
        height: 110px;
    }

    h1 {
        font-size: 22px;
    }

    .stats-badge {
        margin-bottom: 25px;
        padding: 6px 14px;
    }

    .stats-text {
        font-size: 12px;
    }

    .link-card {
        padding: 14px;
        border-radius: 16px;
    }

    .link-icon {
        font-size: 20px;
        margin-right: 12px;
    }

    .link-content h3 {
        font-size: 14px;
    }

    .link-content p {
        font-size: 11px;
    }

    .main-cta {
        padding: 16px;
        font-size: 15px;
        border-radius: 16px;
    }

    .tg-icon {
        width: 20px;
        height: 20px;
    }
}
