* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #764ba2;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn i {
    margin-right: 10px;
    font-size: 20px;
}

.telegram { background: #0088cc; }
.tiktok { background: #000000; }
.discord { background: #5865F2; }
.youtube { background: #FF0000; }
.twitch { background: #9146FF; }

@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    h1 {
        font-size: 20px;
    }
}