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

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    text-align: center;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d4af37; /* Gold for Luxury */
    margin-bottom: 15px;
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 25px 0 15px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
}

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

.link-box {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 400;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.link-box i, .btn-icon-img {
    font-size: 1.5rem;
    width: 30px;
    margin-right: 15px;
    text-align: center;
}

.btn-icon-img {
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
}

/* Brand Colors */
.website { background: linear-gradient(135deg, #1a1a1a, #333); border: 1px solid #d4af37; }
.youtube { background-color: #FF0000; }
.youtube-music { background-color: #FF0000; }
.spotify { background-color: #1DB954; }
.apple-music { background-color: #FA243C; }
.deezer { background-color: #00C7F2; }
.soundcloud { background-color: #FF3300; }
.amazon { background-color: #00A8E1; }
.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.facebook { background-color: #1877F2; }
.tiktok { background-color: #000000; border: 1px solid #25F4EE; }

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 20% auto;
    padding: 30px;
    border: 1px solid #d4af37;
    width: 80%;
    max-width: 350px;
    border-radius: 20px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.modal-btn {
    padding: 12px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.modal-btn:hover {
    background-color: #d4af37;
    color: black;
}

footer {
    margin-top: 50px;
}

.copyright {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 1px;
}
