body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  display: flex;                  
  justify-content: center;       
  align-items: center;
}

.background-video {
  position: fixed;
  top: -10;
  left: -10;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(7px);
}


.content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.493);        
  backdrop-filter: blur(10px);                
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem 3rem;
  max-width: 450px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  color: white;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255 255 255 / 0.4);
  box-shadow: 0 0 15px rgba(255 255 255 / 0.2);
}

.profile-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-card h1 {
  margin: 0 0 0.3rem 0;
  font-weight: 700;
  font-size: 2rem;
}

.profile-card p {
  margin: 0;
  font-weight: 400;
  color: #ccc;
  font-size: 1rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.button-row button {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn1 {
  background-image: url('img/spotify.png');
}

.btn2 {
  background-image: url('img/instagram.png');
}

.btn3{
  background-image: url('img/discord.png');
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

.btn-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: #fff;
  font-family: 'Source Code Pro', monospace;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.btn-wrapper:hover .btn-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.typing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: monospace, monospace;
  color: rgb(247, 247, 247);
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ffffffb4;
  animation: typing 0.5s steps(6) forwards, blinkCursor 1s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 7ch; }
}

@keyframes blinkCursor {
  50% { border-color: transparent; }
  100% { border-color: #f56040; }
}

p{
  font-family: 'Source Code Pro', monospace;
}

h4{
  font-family: 'Source Code Pro', monospace;
  color: rgb(194, 194, 194);
}

span{
  font-family: 'Source Code Pro', monospace;
  color: white;
  text-shadow:
    0 0 5px white,
    0 0 10px white,
    0 0 20px white;
}

.pfp-wrapper {
  position: relative;
  display: inline-block;
}

.pfp-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: #fff;
  font-family: 'Source Code Pro', monospace;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.pfp-wrapper:hover .pfp-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.made-by {
  position: fixed;
  top: 10px;
  left: 10px;
  font-family: 'Source Code Pro', monospace;
  color: white;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.493);          
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;                        
  padding: 0.3rem 0.8rem;                    
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  user-select: none;
  z-index: 9999;
}

.made-by a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff;
  cursor: pointer;
  transition: text-shadow 0.3s ease;
}

.made-by a:hover {
  text-shadow:
    0 0 8px #fff,
    0 0 16px #fff,
    0 0 32px #fff,
    0 0 48px #fff;
}

.sound-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.493);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 0.3rem 0.8rem;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  text-shadow:
    0 0 5px white,
    0 0 10px white,
    0 0 20px white;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1000;
}

.sound-toggle.muted {
  color: #aaa;
  box-shadow: none;
  background: rgba(30, 30, 30, 0.5);
  text-shadow: none;
}

.prague-time {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.493);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem 2rem;
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-size: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  text-align: center;
  text-shadow: 0 0 12px #fff, 0 0 25px #fff;
  z-index: 1000;
  user-select: none;
  cursor: default;
}