* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #450000 50%, #200000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
}

.container {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #444;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #450000);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #8B0000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-placeholder {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 2.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: rgba(50, 50, 50, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #555;
}

.link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
    border-color: #8B0000;
    background: rgba(70, 70, 70, 0.7);
}

.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    border-radius: 8px;
    color: white;
}

.tiktok { background: #000000; }
.pinterest { background: #000000; }
.youtube { background: #000000; }
.telegram { background: #000000; }
.soulvale { background: #000000; }

.link-text {
    font-size: 1.2em;
    font-weight: bold;
}

.description {
    margin-top: 30px;
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .link {
        padding: 12px 20px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-placeholder {
        font-size: 2rem;
    }
}