/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('Picsart_24-10-02_10-00-54-705.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #000;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

h1 {
    font-size: 2em;
    margin: 0.5em 0;
}

.photo-container {
    height: 100px;
    width: 100px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

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

/* Buttons */
.buttons .button {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    position: relative;
    font-size: 16px;
    text-align: center;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}

.buttons .button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, red, yellow, green, blue, purple);
    z-index: -1;
    border-radius: 15px;
    filter: blur(8px);
    animation: glow 3s linear infinite;
}

@keyframes glow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Extra Buttons Section */
.extra-buttons {
    margin-top: 20px;
}

.extra-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

/* YouTube Button */
.yt-button {
    background-color: #FF0000;
    color: white;
    position: relative;
    overflow: hidden;
}

.yt-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.yt-button:hover {
    background-color: #D50000;
}

/* TikTok Button */
.tt-button {
    background-color: #000000; /* Black background */
    color: white;
    position: relative;
    overflow: hidden;
}

.tt-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.tt-button:hover {
    background-color: #333333; /* Slightly lighter black */
}

/* Number Button */
.extra-button:not(.yt-button):not(.tt-button) {
    background-color: #007bff;
    color: white;
}

.extra-button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Menu (Three Dots) */
.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.dot {
    width: 25px;
    height: 5px;
    background-color: #333;
    margin: 5px 0;
    border-radius: 5px;
    }
