/* ===== УНІВЕРСАЛЬНІ СТИЛІ ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #1a1a1d;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
a:hover {
  color: #00ff66;
}

/* ===== HEADER ===== */
.header {
  background: #111;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Верхня панель */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Лого */
.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.logo-img {
  width: 40px;
  height: 40px;
}
.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #00ff66;
}

/* Пошук */
.search-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-bar {
  display: flex;
  width: 100%;
  max-width: 500px;
}
.search-bar input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #00ff66;
  border-radius: 4px 0 0 4px;
  background: #222;
  color: #fff;
}
.search-bar input:focus {
  outline: 2px solid #00ff66;
}
.btn-search {
  background: #00ff66;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-search img {
  width: 18px;
  height: 18px;
}

/* Top Searches */
.top-searches {
  margin-top: 5px;
  font-size: 13px;
  color: #bbb;
}
.top-searches span {
  margin-right: 6px;
  color: #fff;
  font-weight: bold;
}
.top-searches a {
  margin-right: 10px;
  color: #ccc;
}
.top-searches a:hover {
  color: #00ff66;
}

.main-nav {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
}

.main-nav a {
  color: #cfcfcf;
  text-decoration: none;
  padding: 10px 14px;
  transition: all 0.3s ease;
  position: relative;
}

/* hover ефект */
.main-nav a:hover {
  color: #00ff88;
}

/* underline animation */
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #00ff88;
  transition: 0.3s;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Дії справа */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sign-in:hover {
  background: #00cc55;
}
.header-actions img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ===== MAIN ===== */
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px 0 10px;
  font-size: 18px;
  color: #00ff66;
  margin-bottom: 15px;
  transition: 0.3s;
  text-shadow:
    0 0 8px rgba(0, 255, 136, 0.6),
    0 0 18px rgba(0, 255, 136, 0.3);
}

h2:hover {
  color: #00ff88;
  letter-spacing: 2.5px;
}

.modal-content h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

/* Таблиці */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.data-table td {
  background: #222;
  padding: 20px;
  font-weight: bold;
  border: 1px solid #333;
  transition: background 0.3s, transform 0.2s;
}
.data-table td:hover {
  background: #333;
  transform: scale(1.05);
}

/* Кнопки */
.view-all {
  background: #00ff66;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(45deg, #00ff88, #00c853);
  box-shadow: 0 4px 15px rgba(0,255,120,0.35);

  transition: all 0.3s ease;
}
.view-all:hover {
  background: #00cc55;
  transform: translateY(-2x) scale(1.04);
  box-shadow: 0 6px 20px rgba(0,255,120,0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  border-top: 2px solid #00ff66;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  margin: 0 8px;
}
.footer-links a:hover {
  color: #00ff66;
}
.socials span {
  margin: 0 8px;
  cursor: pointer;
  font-size: 18px;
}
.socials span:hover {
  color: #00ff66;
}

/* === SHOP BY PUBLISHER (carousel) === */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.publisher-card {
  min-width: 250px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.publisher-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publisher-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ff66;
}

.genres-card {
  min-width: 250px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.genres-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.genres-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ff66;
}

/* Адаптивність */
@media (max-width: 768px) {
  .publisher-card {
    min-width: 180px;
    height: 120px;
  }
  .genres-card {
    min-width: 180px;
    height: 120px;
  }
}
@media (max-width: 480px) {
  .publisher-card {
    min-width: 150px;
    height: 100px;
  }
  .genres-card {
    min-width: 150px;
    height: 100px;
  }
  .carousel-btn {
    font-size: 22px;
    padding: 6px;
  }
}

/* === GAMES ON SALE === */
.games-sale {
  margin-top: 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.game-card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00ff66;
}

.game-img {
  position: relative;
  height: 200px;
}
.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3333;
  color: #fff;
  padding: 4px 8px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
}

.game-info {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-weight: bold;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}
.new-price {
  color: #00ff66;
}

/* Дії під карткою */
.game-actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  background: #111;
}
.btn-cart {
  flex: 1;
  background: transparent;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-cart:hover {
  background: #00ff66;
  color: #000;
}
.btn-fav {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  width: 50px;
  cursor: pointer;
  transition: color 0.3s;
}
.btn-fav:hover {
  color: #ff3333;
}

/* Адаптивність */
@media (max-width: 768px) {
  .game-img {
    height: 130px;
  }
}
@media (max-width: 480px) {
  .game-img {
    height: 120px;
  }
  .btn-cart {
    font-size: 13px;
  }
}

/* === MORE CATEGORIES === */
.more-categories {
  margin-top: 50px;
  text-align: left;
}
.more-categories h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.category-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 18px 10px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.category-btn:hover {
  background: #00ff66;
  color: #000;
  transform: translateY(-3px);
}
.category-btn.active {
  background: #00ff66;
  color: #000;
}

/* === VIEW ALL GAMES SECTION === */
.view-all-games-section {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Зображення як фон */
.games-background {
  background: url("Pics/Colage.png") center/cover no-repeat;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Напівпрозорий шар для затемнення */
.games-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Кнопка */
.view-all-main {
  position: relative; /* щоб бути над затемненням */
  z-index: 2;
  background: #00ff66;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.view-all-main:hover {
  background: #00cc55;
  transform: scale(1.05);
}

/* Адаптивність */
@media (max-width: 768px) {
  .games-background {
    height: 140px;
  }
  .view-all-main {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
@media (max-width: 480px) {
  .games-background {
    height: 120px;
  }
}

/* === BURGER MENU === */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2rem;
  gap: 0.4rem;
  z-index: 20;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #00ff66;
  border-radius: 5px;
  transition: all 0.4s ease;
}

/* Активний стан (анімована іконка Х) */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Адаптація навігації */
@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .burger-menu {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: rgba(17, 17, 17, 0.97);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    align-items: center;
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.1rem;
  }
}

/* Плавна поява головних секцій */
main section {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}
main section:nth-child(1) {
  animation-delay: 0.1s;
}
main section:nth-child(2) {
  animation-delay: 0.2s;
}
main section:nth-child(3) {
  animation-delay: 0.3s;
}
main section:nth-child(4) {
  animation-delay: 0.4s;
}
main section:nth-child(5) {
  animation-delay: 0.5s;
}
main section:nth-child(6) {
  animation-delay: 0.6s;
}

/* === ВІДНОСНІ ОДИНИЦІ === */
body {
  font-size: 1rem; /* базова одиниця */
}
h2 {
  font-size: 1.4rem;
}
.logo-img {
  width: 2.5rem;
  height: 2.5rem;
}
.logo-text {
  font-size: 1.4rem;
}
.view-all-main {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.games-background {
  height: 30vh; /* замість px */
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  z-index: 200;
}

.form-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  animation: scaleIn 0.3s ease;
  border: 2px solid #00ff66;
}

.modal-content img {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #00ff66;
}

/* Анімація модалки */
@keyframes scaleIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.pagination button {
    background: #1f1f1f;
    color: #fff;
    border: 2px solid #444;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.pagination button:hover {
    background: #3a3a3a;
    border-color: #888;
    transform: scale(1.05);
}

.pagination button:active {
    transform: scale(0.95);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.main-nav {
  background: #0f0f0f;
  padding: 12px 0;
}

.catalog {
  position: relative;
}

.catalog-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  display: none;
  flex-direction: column;
  min-width: 220px;
  border-radius: 8px;
  padding: 15px;
}

.catalog-dropdown a {
  padding: 8px 0;
}

.catalog:hover .catalog-dropdown {
  display: flex;
}

.language-dropdown {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #222;
  display: none;
  flex-direction: column;
  padding: 10px;
  border-radius: 8px;
  min-width: 150px;
}

.language-dropdown:hover .lang-menu {
  display: flex;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.language-wrapper:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-menu span {
  padding: 6px 0;
  cursor: pointer;
}

.lang-menu span:hover {
  color: #00ff66;
}

.auth-wrapper {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 400px;
}

.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth-tabs button {
  flex: 1;
  padding: 10px;
  background: #222;
  border: none;
  cursor: pointer;
}

.auth-tabs .active {
  background: #00ff66;
  color: #000;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.auth-form.active {
  display: flex;
}

header {
  position: relative;
  z-index: 1000;
}

/* ================= AUTH MODAL ================= */

.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.auth-wrapper {
  position: relative;
  width: 420px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(145deg, #141414, #1c1c1c);
  box-shadow: 0 0 30px rgba(0,255,102,0.3);
  animation: slideUp 0.3s ease;
}

.auth-title {
  text-align: center;
  margin-bottom: 20px;
  color: #b3c5ba;
}

/* close button */
.auth-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s;
}

.auth-close:hover {
  color: #00ff66;
  transform: scale(1.2);
}

/* tabs */
.auth-tabs {
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.auth-tabs button {
  flex: 1;
  padding: 12px;
  background: #222;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.auth-tabs .active {
  background: #a1b6a9;
  color: #000;
}

/* forms */
.auth-form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.auth-form.active {
  display: flex;
}

.auth-form input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #2a2a2a;
  color: white;
}

.auth-form input:focus {
  outline: 2px solid #00ff66;
}

.auth-form button {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #00ff66;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.auth-form button:hover {
  background: #00cc55;
}

/* animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* language button */
.lang-btn {
  background: #1a1a1a;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.lang-btn:hover {
  background: #00ff66;
  color: black;
}

/* ===== PERFECT INFINITE CAROUSEL ===== */

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* пауза при наведенні */
.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* ВАЖЛИВО: рух рівно на половину */
@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-150%);
  }
}

.cart-dropdown {
  position: relative;
}

.cart-preview {
  position: absolute;
  top: 110%;
  right: 0;
  width: 260px;

  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  z-index: 1000;

  /* прихований стан */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-preview.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.view-cart-btn {
  width: 100%;
  padding: 8px;
  background: #ff3c00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.view-all-main {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #00ff66, #00cc55);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0,255,102,0.3);
}

.view-all-main:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,255,102,0.5);
}

.view-all-main:active {
  transform: scale(0.97);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 99999; /* ВАЖЛИВО */
}

.modal-content.cart {
  position: relative;
  background: #111;
  padding: 2rem;
  border-radius: 20px;
  width: 95%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 2px solid #00ff66;
  box-shadow: 0 0 40px rgba(0,255,102,0.3);
}

.modal-content.cart::-webkit-scrollbar {
  display: none;
}

.modal-content.cart::after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, #111, transparent);
  pointer-events: none;
}

.close-cart {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.close-cart:hover {
  color: #00ff66;
  transform: scale(1.2);
}

.modal-content.cart {
  animation: cartAppear 0.3s ease;
}

@keyframes cartAppear {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 400px;
  background: #111;
  z-index: 9999;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}

.cart-modal::-webkit-scrollbar {
  display: none; /* Chrome */
}

header .sign-in {
  padding: 10px 26px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  cursor: pointer;

  background: linear-gradient(45deg, #00ff88, #00c853);
  box-shadow: 0 4px 15px rgba(0,255,120,0.35);

  transition: all 0.3s ease;
}

header .sign-in:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0,255,120,0.6);
}

#modal-go {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  color: #000;

  background: linear-gradient(45deg, #00ff88, #00c853);
  box-shadow: 0 4px 15px rgba(0,255,120,0.35);
  transition: all 0.3s ease;
}

#modal-go:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0,255,120,0.6);
}

.remove {
  display: inline-block;
  margin-top: 5px;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  transition: 0.25s;
}

.remove:hover {
  color: #ff3333;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
  transform: scale(1.05);
}

.modal-content {
  position: relative;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
  transition: 0.25s;
  user-select: none;
}

.close-btn:hover {
  color: #00ff88;
  transform: scale(1.15);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}