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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
    cursor: url('src/cursor.png'), auto;
}

#background-video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
}

.container {
    width: 370px;
    height: 500px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    position: relative;
}

.music-player {
    width: 100%;
}

.player-main {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.album-art {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.info-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.song-info {
    margin-bottom: 8px;
}

.song-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}

.song-title .feat {
    font-weight: 400;
    color: #bbb;
    font-size: 13px;
}

.artist {
    font-size: 13px;
    color: #bbb;
    opacity: 0.9;
}

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

.control-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.08);
}

.play-btn {
    width: 38px;
    height: 38px;
    font-size: 17px;
    background: rgba(255,255,255,0.15);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.current-time, .total-time {
    font-size: 11px;
    color: #bbb;
    min-width: 32px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.13);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.profile-pic-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 48px;
    margin-bottom: -54px;
    z-index: 2;
    position: relative;
}

.profile-pic-square {
    position: absolute;
    left: 15%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 24px;
    z-index: 2;
    border: none;
    background: transparent !important;
}

.profile-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 540px;
    min-height: 120px;
    background: rgba(30, 30, 30, 0.65);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(16px);
    margin: 0;
    padding: 70px 36px 100px 36px;
    overflow: visible;
    justify-content: flex-start;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    width: 100%;
}

.profile-row {
    display: none !important;
}

.profile-name {
    font-family: 'Lova Power', cursive !important;
    font-size: 2.5em;
    color: #fff;
    text-shadow: 
        0 0 3px #fff,
        0 0 6px #fff,
        0 0 12px rgba(255,255,255,0.5);
    margin: 0;
    opacity: 0;
    animation: fadeInName 2.5s ease forwards;
    animation-delay: 0.7s;
    display: block;
    z-index: 1;
    line-height: 1.5;
}

.yasser-container {
    position: relative;
    margin: 8px 0 0 0;
}

.yasser-name {
    font-family: 'DePixel', monospace !important;
    font-size: 1.2em;
    color: #a855f7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    opacity: 0;
    animation: fadeInName 2.5s ease forwards;
    animation-delay: 2.7s;
    margin: 0;
}

.sparkle {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

@keyframes fadeInName {
    to { opacity: 1; }
}

.badge-capsule {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: auto;
    min-height: unset;
    transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
    margin: 2px 0 0 0;
    overflow: visible;
}

.badge-capsule:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transform: scale(1.07);
}

.star {
    font-size: 2.1em;
    color: #fff;
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #fff8);
    vertical-align: middle;
    display: inline-block;
}

.bmw-badge, .sonic-badge, .seven-badge {
    width: 2.1em;
    height: 2.1em;
    object-fit: contain;
    display: inline-block;
    border-radius: 50%;
    background: none;
    box-shadow: none;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

.ak47-badge {
    width: 2.1em;
    height: 2.1em;
    object-fit: contain;
    display: inline-block;
    border-radius: 0;
    background: none;
    box-shadow: none;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

.bat-badge {
    width: 2.1em;
    height: 2.1em;
    object-fit: contain;
    display: inline-block;
    border-radius: 50%;
    background: none;
    box-shadow: none;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

.profile-status {
    font-family: 'DePixel', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.92;
    text-shadow: 0 1px 4px #0002;
    line-height: 1.4;
}

.profile-stats {
    position: absolute;
    top: 18px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-family: 'DePixel', sans-serif;
    font-size: 1.1rem;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

.profile-stats svg {
    display: inline-block;
    vertical-align: middle;
}

.name-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 160px;
}

.name-typewriter {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    animation: fadeInName 2.5s ease forwards;
    animation-delay: 0.7s;
    text-shadow:
        0 0 3px #fff,
        0 0 6px #fff,
        0 0 12px rgba(255,255,255,0.5);
    font-family: 'Lova Power', 'Lova Power Regular', sans-serif !important;
}

@keyframes fadeInName {
    to { opacity: 1; }
}

.sub-name {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
    color: #a259ff;
    letter-spacing: 0.09em;
    text-align: center;
    font-family: 'DePixel', sans-serif !important;
    opacity: 0;
    animation: fadeInName 2.5s ease forwards;
    animation-delay: 2.7s;
    margin-top: 6px;
    display: inline-block;
    text-shadow:
        0 0 4px #a259ff,
        0 0 8px #a259ff44;
}

.sparkle-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 32px;
    transform: translate(-50%, -55%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
}

.p2pdmt_dcda406f18f8e86eaca2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.p2pdmt_dcda406f18f8e86eaca2 svg {
    font-size: 2.1rem;
    vertical-align: middle;
}

.badge-capsule svg {
    font-size: 1.3rem;
    color: #fff;
    filter: drop-shadow(#fff 0 0 2.5px);
}

.profile-floating { display: none !important; }

.g6-quote {
    margin: 18px 0 0 15px;
    text-align: left;
    color: #fff;
    font-size: 1.08em;
    font-family: 'DePixel', monospace, sans-serif;
    text-shadow:
        0 0 8px #fff,
        0 0 16px #fff,
        0 0 32px #fff8;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.social-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 0;
    margin-bottom: 18px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.social-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transition: transform 0.18s, filter 0.18s;
    cursor: pointer;
}

.social-icon:hover {
    filter: brightness(1.3) drop-shadow(0 0 8px #fff8);
    transform: scale(1.13) rotate(-3deg);
}

@media (max-width: 600px) {
  .profile-card {
    width: 98vw;
    min-width: 0;
    padding: 22px 2vw 28px 2vw;
    border-radius: 14px;
  }
  .profile-pic-square {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
  .profile-name {
    font-size: 1.1em;
    margin-bottom: 2px;
  }
  .badge-capsule {
    gap: 4px;
    padding: 4px 5px;
    border-radius: 8px;
    margin-top: 2px;
  }
  .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge {
    width: 1em;
    height: 1em;
  }
  .g6-quote {
    font-size: 0.85em;
    margin: 10px 0 0 4px;
    line-height: 1.2;
  }
  .social-row {
    gap: 10px;
    margin-bottom: 4px;
  }
  .social-icon {
    width: 22px;
    height: 22px;
  }
  .success {
    width: 96vw;
    min-width: 0;
    padding: 7px;
    font-size: 12px;
    left: 2vw;
    transform: none;
    border-radius: 6px;
    bottom: 12px;
  }
  .success__icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .success__title {
    font-size: 12px;
  }
}

/* Uiverse.io success popup styles */
.success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #EDFBD8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
  position: fixed;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%) translateY(30px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,2,.6,1), transform 0.35s cubic-bezier(.4,2,.6,1);
}
.success.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}
.success__icon path {
  fill: #84D65A;
}
.success__title {
  font-weight: 500;
  font-size: 14px;
  color: #2B641E;
}
.success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.success__close path {
  fill: #2B641E;
}
@media (max-width: 600px) {
  .success {
    width: 90vw;
    min-width: 0;
    padding: 10px;
    font-size: 13px;
  }
}

#enter-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), visibility 0.7s;
  opacity: 1;
  visibility: visible;
}
#enter-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.enter-text {
  color: #fff;
  font-size: 2.2em;
  font-family: 'DePixel', monospace, sans-serif;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px #fff, 0 0 32px #fff8;
  user-select: none;
  animation: enterPulse 1.2s infinite alternate;
}
@keyframes enterPulse {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
body.enter-blur > *:not(#enter-overlay) {
  filter: blur(8px) brightness(0.7);
  pointer-events: none;
  transition: filter 0.7s cubic-bezier(.4,2,.6,1);
}
body:not(.enter-blur) > *:not(#enter-overlay) {
  filter: none;
  pointer-events: auto;
}

.views-counter {
    position: absolute;
    top: 22px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    font-family: 'DePixel', monospace, sans-serif;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 0 12px 2px rgba(255,255,255,0.12);
    text-shadow: 0 0 8px #fff;
    transition: background 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: auto;
    border: 2px solid transparent;
}

.views-counter:hover {
    background: rgba(255,255,255,0.22) !important;
    box-shadow: 0 0 32px 8px rgba(255,255,255,0.22) !important;
    transform: scale(1.08) !important;
}

.views-counter:hover .views-text,
.views-counter:hover .eye-icon {
    color: #fff !important;
    filter: drop-shadow(0 0 12px #fff) !important;
    text-shadow: 0 0 12px #fff !important;
}

.eye-icon {
    width: 18px;
    height: 18px;
    color: #fff;
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #fff8);
}

.views-text {
    color: #fff;
    font-family: 'DePixel', monospace, sans-serif;
    text-shadow: 0 0 8px #fff;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90vw;
        max-width: 350px;
        height: auto;
        min-height: 450px;
        margin: 20px auto;
    }

    .profile-card {
        width: 100%;
        max-width: 320px;
        min-height: 100px;
        padding: 60px 20px 80px 20px;
        border-radius: 20px;
        margin: 0 auto;
    }

    .profile-pic-square {
        width: 100px;
        height: 100px;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 18px;
    }

    .profile-name {
        font-size: 24px;
        text-align: center;
        margin: 0 auto 8px auto;
    }

    .yasser-name {
        font-size: 18px;
        text-align: center;
        margin: 0 auto 16px auto;
    }

    .badge-capsule {
        padding: 8px 12px;
        border-radius: 16px;
        gap: 8px;
        margin: 0 auto;
        justify-content: center;
    }

    .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge, .bat-badge {
        width: 24px;
        height: 24px;
    }

    .g6-quote {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 16px auto 0 auto;
    }

    .social-row {
        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .music-player {
        padding: 0 16px;
    }

    .album-art {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }

    .song-title {
        font-size: 14px;
    }

    .artist {
        font-size: 12px;
    }

    .control-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .play-btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .views-counter {
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 12px;
    }

    .eye-icon {
        width: 14px;
        height: 14px;
    }

    .views-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95vw;
        max-width: 300px;
        min-height: 400px;
        margin: 15px auto;
    }

    .profile-card {
        width: 100%;
        max-width: 280px;
        padding: 50px 16px 70px 16px;
        border-radius: 16px;
    }

    .profile-pic-square {
        width: 90px;
        height: 90px;
        border-radius: 16px;
    }

    .profile-name {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .yasser-name {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .badge-capsule {
        padding: 6px 10px;
        border-radius: 14px;
        gap: 6px;
    }

    .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge, .bat-badge {
        width: 22px;
        height: 22px;
    }

    .g6-quote {
        font-size: 13px;
        margin: 12px auto 0 auto;
    }

    .social-row {
        gap: 10px;
        margin-top: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .music-player {
        padding: 0 12px;
    }

    .album-art {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .song-title {
        font-size: 13px;
    }

    .artist {
        font-size: 11px;
    }

    .control-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .play-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .views-counter {
        padding: 6px 10px;
        border-radius: 10px;
        font-size: 11px;
    }

    .eye-icon {
        width: 12px;
        height: 12px;
    }

    .views-text {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .container {
        width: 98vw;
        max-width: 280px;
        min-height: 380px;
        margin: 10px auto;
    }

    .profile-card {
        width: 100%;
        max-width: 260px;
        padding: 45px 12px 60px 12px;
        border-radius: 14px;
    }

    .profile-pic-square {
        width: 80px;
        height: 80px;
        border-radius: 14px;
    }

    .profile-name {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .yasser-name {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .badge-capsule {
        padding: 5px 8px;
        border-radius: 12px;
        gap: 5px;
    }

    .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge, .bat-badge {
        width: 20px;
        height: 20px;
    }

    .g6-quote {
        font-size: 12px;
        margin: 10px auto 0 auto;
    }

    .social-row {
        gap: 8px;
        margin-top: 14px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .music-player {
        padding: 0 10px;
    }

    .album-art {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }

    .song-title {
        font-size: 12px;
    }

    .artist {
        font-size: 10px;
    }

    .control-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .play-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .views-counter {
        padding: 5px 8px;
        border-radius: 8px;
        font-size: 10px;
    }

    .eye-icon {
        width: 10px;
        height: 10px;
    }

    .views-text {
        font-size: 10px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .control-btn, .social-icon, .badge-capsule {
        min-height: 44px;
        min-width: 44px;
    }

    .control-btn {
        width: 44px;
        height: 44px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .badge-capsule {
        padding: 12px 16px;
    }

    .profile-card {
        transform: none !important;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        height: 90vh;
        max-height: 400px;
    }

    .profile-card {
        padding: 40px 20px 60px 20px;
    }

    .profile-pic-square {
        width: 80px;
        height: 80px;
    }

    .profile-name {
        font-size: 20px;
    }

    .yasser-name {
        font-size: 16px;
    }

    .badge-capsule {
        padding: 6px 10px;
    }

    .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge, .bat-badge {
        width: 20px;
        height: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-pic-square,
    .album-art,
    .star, .bmw-badge, .sonic-badge, .seven-badge, .ak47-badge, .bat-badge {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
} 