@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transition: background 0.5s;
}

body.dark {
    background: linear-gradient(135deg, #2ad4ff, #ff8635);
}

.container {
    text-align: center;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: fadeIn 1.5s ease;
    max-width: 400px;
   
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #fff;
    animation: bounce 3s infinite;
}

h1 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.desc {
    color: #f0f0f0;
    font-size: 16px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    text-decoration: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.btn i {
    font-size: 18px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tg { background: #0088cc; animation-delay: 0.1s; }
.insta { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); animation-delay: 0.3s; }
.steam { background: #171a21; animation-delay: 0.5s; }
.discord { background: #5865F2; animation-delay: 0.7s; }
.youtube { background: #FF0000; animation-delay: 0.9s; }
.github { background: #333; animation-delay: 1.1s; }
.blog { background: #ff5722; animation-delay: 1.3s; }

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}

footer {
    margin-top: 40px;
    color: #f0f0f0;
    font-size: 14px;
}

footer .mail {
    color: #f0f0f0;
    text-decoration: none;
}