body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: url("background1.jpg") center center fixed;
  background-size: cover;
  color: #f3e8ff;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.header {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #b2d0f1;
  box-shadow: 0 4px 12px rgba(178, 208, 241, 0.2);
}

.header img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gif-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin: 30px auto 10px auto;
  width: 100%;
  max-width: 800px;
}

.gif-bar img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.layout {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 15px;
  align-items: start;
}

.sidebar, .content {
  background: rgba(35, 15, 60, .82);
  backdrop-filter: blur(5px);
  border: 2px solid #b57dff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 0 15px rgba(180, 120, 255, .3);
}

/* Rightbar — نفس ستايل الـ sidebar بالضبط + scrollbar */
.rightbar {
  background: rgba(35, 15, 60, .82);
  backdrop-filter: blur(5px);
  border: 2px solid #b57dff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 0 15px rgba(180, 120, 255, .3);
  max-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.window-header {
  display: none;
}

.rightbar-scroll-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #b57dff rgba(35, 15, 60, 0.5);
}

.rightbar-scroll-content::-webkit-scrollbar {
  width: 6px;
}

.rightbar-scroll-content::-webkit-scrollbar-track {
  background: rgba(35, 15, 60, 0.5);
  border-radius: 10px;
}

.rightbar-scroll-content::-webkit-scrollbar-thumb {
  background-color: #b57dff;
  border-radius: 10px;
}

.rightbar-scroll-content::-webkit-scrollbar-thumb:hover {
  background-color: #d8b6ff;
}

.sidebar h2 {
  text-align: center;
}

.sidebar button {
  width: 100%;
  margin: 4px 0;
  padding: 8px 12px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(#d8b6ff, #b57dff);
  font-size: 13px;
  cursor: pointer;
}

.section {
  background: rgba(255, 255, 255, .08);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.hidden {
  display: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  min-height: 120px;
  border-radius: 20px;
  background: rgba(200, 150, 255, .15);
  border: 1px dashed #d9b9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget {
  background: rgba(255, 255, 255, .08);
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

audio {
  width: 100%;
}

.custom-player-box {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  border: 2px solid #d8b4fe;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(192, 132, 252, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}

.player-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.album-art {
  width: 55px;
  height: 55px;
  background-color: #c084fc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  border: 2px solid #ffffff;
  flex-shrink: 0;
}

.song-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.song-title {
  font-size: 14px;
  font-weight: bold;
  color: #581c87;
}

.song-artist {
  font-size: 13px;
  font-style: italic;
  color: #7e22ce;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  color: #7e22ce;
  user-select: none;
}

.player-controls span {
  cursor: pointer;
  transition: transform 0.1s, color 0.2s;
}

.player-controls span:hover {
  transform: scale(1.15);
  color: #581c87;
}

.track-dropdown {
  width: 100%;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #d8b4fe;
  background: #fdfcff;
  color: #581c87;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

#board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 180px;
  margin: 10px auto 0 auto;
}

.xo {
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background: #f3f7fd;
  border: 1px solid #b3d1f2;
  border-radius: 8px;
  color: #3b597d;
  transition: background 0.2s;
}

.xo:hover {
  background: #e2effd;
}

.hidden-sc-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

@media(max-width:900px){
  .layout {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}
/* Black Wings - https://www.cursors-4u.com/cursor/spe26 */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/black-wings-07b06b68-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */

.desc-box {
  flex: 1;
  /* استبدال اللون الوردي السادة بصورة خلفية */
  background-image: url('bc.jpg');
  background-repeat: repeat; /* لجعل الخلفية تتكرر كباترن */
  border: 2px solid #fcaec0;
  border-radius: 8px;
  padding: 15px;
  font-size: 13px;
  line-height: 1.6;
  color: #7a414e;
  position: relative;
  
}
.character {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 180px;
  z-index: 9999;
  pointer-events: none;
}