* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('../images/image.gif') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 1.8rem;
}

.animated-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    max-width: 200px;
    animation: slide-in-out 4s infinite;
    font-size: 1.2rem;
    border-right: 2px solid #00ffff;
}

@keyframes slide-in-out {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes fade {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.social-links a {
    display: inline-block;
    margin: 10px;
    position: relative;
    color: #00ffff;
    font-size: 1.65rem;
    transition: transform 0.3s;
}

.social-links .video-trigger {
    margin: 10px;
    position: relative;
    background: transparent;
    border: 0;
    padding: 0;
    color: #00ffff;
    font-size: 1.65rem;
    box-shadow: none;
}

.social-links .social-link-troll::after {
    content: "OnlyFans";
    position: absolute;
    left: 50%;
    bottom: -1.15rem;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #ffffff;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.social-links .social-link-troll:hover::after {
    opacity: 1;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links .video-trigger:hover,
.social-links .video-trigger:focus-visible {
    transform: scale(1.2);
    color: #ffffff;
    outline: none;
}

.more-about {
    margin: 20px 0;
}

.about-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: #00ffff;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

.about-button:hover {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    color: #ffffff;
}


.music-player {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: inline-block;
}

.music-player img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#play-pause {
    background: none;
    border: none;
    color: #00ffff;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    padding: 5px;
}

#play-pause:hover {
    color: #ffffff;
}

#progress-bar {
    flex: 1;
    height: 5px;
    background: #555;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

#progress {
    height: 100%;
    background: #00ffff;
    width: 0%;
}

#current-time, #total-time {
    font-size: 0.9rem;
    color: #ffffff;
}

.song-info a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

.song-info a:hover {
    text-decoration: underline;
}

button {
    display: inline-block;
    background-color: #003f3f;
    color: #00ffff;
    padding: 10px 20px;
    border: 1px solid #00ffff;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
    box-shadow: none;
  }
  
  button:hover {
    background-color: #005f5f;
    color: #ffffff;
    border-color: #00dddd;
  }
  
  .controls button {
    position: relative;
    top: -4px;
  }

.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.video-modal__dialog {
    position: relative;
    width: min(100%, 1040px);
    padding: 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: #050505;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-top: 0;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    color: #d6d6d6;
    border-radius: 999px;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
}

.video-modal__eyebrow {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.video-modal__frame-wrap {
    overflow: hidden;
    border-radius: 12px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000000;
}

body.modal-open {
    overflow: hidden;
}

.video-modal__source {
    position: absolute;
    right: 54px;
    top: 12px;
    margin: 0;
}

.video-modal__source a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #d6d6d6;
    text-decoration: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.video-modal__source a:hover,
.video-modal__source a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
    outline: none;
}

@media (max-width: 640px) {
    .video-modal__dialog {
        padding: 14px;
    }

    .video-modal__source {
        right: 48px;
        top: 10px;
    }
}
  
