/* الألوان الأساسية من صورتك */
:root {
    --bg-dark: #1a0633;
    --main-purple: #4b2c7e;
    --text-pink: #f9b4ca;
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Papyrus', sans-serif;
    margin: 0;
}

/* صورة الهيدر */
.main-header {
    height: 250px;
    background-image: url('https://i.imgur.com/your-image.jpg'); /* حطي رابط صورة الهيدر هنا */
    background-size: cover;
}

/* تنسيق الأزرار */
.navbar {
    background-color: #000;
    text-align: center;
    padding: 10px;
}
.navbar a {
    color: var(--text-pink);
    text-decoration: none;
    margin: 0 15px;
}

/* تقسيم العواميد (مثل الصورة) */
.content-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.sidebar {
    width: 200px;
    background-color: var(--bg-dark);
    padding: 15px;
}

.main-content {
    flex: 1;
    max-width: 600px;
    background-color: var(--main-purple);
    margin: 0 20px;
    padding: 40px;
    border-radius: 50px 50px 0 0; /* الانحناء اللي في الصورة */
}

.box {
    border: 1px solid var(--text-pink);
    padding: 10px;
    font-size: 0.9em;
}
.container {
  width: 90%;
  margin: auto;
}

.box {
  background-color: #000033;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #ffcc00;
}

.row {
  display: flex;
  justify-content: space-between;
}

.small-box {
  background-color: #222255;
  color: white;
  padding: 10px;
  width: 32%;
  border: 2px solid #ffcc00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #000;
}

/* الخلفية */
.scene {
  width: 100vw;
  height: 100vh;
  background-image: url("https://i.pinimg.com/1200x/6f/31/c0/6f31c04b06859de06f2c03a92fc77d9e.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* صورة الشخصية */
.character {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  height: 70%;
}

/* مربع الحوار */
.dialogue-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(148, 165, 237, 0.503);
  border-radius: 15px;
  padding: 20px;
  color: #4b2b2b;
}

/* اسم الشخصية */
.name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* النص */
.text {
  font-size: 16px;
  line-height: 1.5;
}

/* زر الانتقال */
.next-btn {
  position: absolute;
  bottom: 15px;
  right: 20px;
  text-decoration: none;
  font-size: 20px;
  background: white;
  color: rgba(132, 147, 229, 0.116);
  padding: 8px 12px;
  border-radius: 50%;
  transition: 0.3s;
}

.next-btn:hover {
  background: rgba(39, 163, 240, 0.839);
  color: white;
}







