.section1 { background-image: url("res/bg1.png"); }
.section2 { background-image: url("res/bg2.png"); }
.section3 { background-image: url("res/bg3.png"); }
.my-btn {
  background: linear-gradient(135deg, #6a5acd, #8a2be2); /* градієнт */
  color: #fff;                  /* білий текст */
  border: none;                 /* без рамки */
  padding: 12px 28px;           /* відступи */
  font-size: 18px;              /* розмір тексту */
  font-weight: 600;             /* товщина шрифту */
  border-radius: 10px;          /* закруглені кути */
  cursor: pointer;              /* курсор-рука */
  transition: 0.3s ease;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("res/bg1.png") no-repeat center center fixed;
  background-size: cover;
}

/* Бургер-кнопка */
.burger {
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  background: black;
  color: white;
  position: fixed;
  top: 10px;
  left: 10px;        /* початкове положення */
  z-index: 1000;
  border-radius: 5px;
  transition: left 0.5s; /* плавний рух */
}

/* Бокове меню */
.sidebar {
  height: 100%;
  width: 0;          /* приховане */
  position: fixed;
  top: 0;
  left: 0;
  background: #111;
  overflow-x: hidden;
  transition: width 0.5s;
  padding-top: 60px;
  z-index: 999;
}

.sidebar a {
  display: block;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
}

.sidebar a:hover {
  background: #333;
  transition: 0.3s ease;        /* плавні ефекти */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* тінь */
  text-transform: uppercase;    /* великі літери */
  letter-spacing: 1px;          /* відстань між літерами */
}

.my-btn:hover {
  background: linear-gradient(135deg, #8a2be2, #6a5acd); /* інший градієнт */
  transform: scale(1.08);       /* збільшення при наведенні */
  box-shadow: 0 6px 16px rgba(0,0,0,0.5); /* сильніша тінь */
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Бургер-кнопка */
.burger {
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  background: black;
  color: white;
  position: fixed;
  top: 10px;
  left: 10px;       /* початкове положення */
  z-index: 1000;
  border-radius: 5px;
  transition: left 0.5s; /* плавний рух */
}

/* Бокове меню */
.sidebar {
  height: 100%;
  width: 0;              /* приховане */
  position: fixed;
  top: 0;
  left: 0;
  background: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  z-index: 999;
}

.sidebar a {
  display: block;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
}

.sidebar a:hover {
  background: #333;
}
.rules-box {
  background: rgba(0, 0, 0, 0.6); /* напівпрозорий чорний фон */
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 20px auto;
  color: #fdfdfd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.rules-box h1 {
  color: #8501e3;
  margin-bottom: 15px;
}
.rules-box ul {
  text-align: left;
  list-style: none;
  padding: 0;
}
.rules-box li {
  margin: 10px 0;
  font-size: 16px;
}
.contacts-box {
  background: rgba(0, 0, 0, 0.6); /* напівпрозорий чорний фон */
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 20px auto;
  color: #fdfdfd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.contacts-box h1 {
  color: #8501e3;
  margin-bottom: 15px;
}

.contacts-box ul {
  list-style: none;
  padding: 0;
}

.contacts-box li {
  margin: 10px 0;
  font-size: 16px;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* сучасний шрифт для тексту */
  background: url("res/bg1.png") no-repeat center center fixed;
  background-size: cover;
}

.home-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
  color: #fdfdfd;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.home-box h1 {
  font-family: 'Orbitron', sans-serif; /* футуристичний шрифт для заголовків */
  color: #8501e3;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.home-box h2 {
  font-family: 'Orbitron', sans-serif;
  color: #fdfdfd;
  margin-bottom: 15px;
}

.home-box p, .home-box ul, .home-box ol {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
.start-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #8501e3;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.start-btn:hover {
  background: #a63af0;
  transform: scale(1.05);
}