@charset "UTF-8";
/* =========================
   Base Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* =========================
   HTML & Body
   ========================= */
body {
  background-color: #fff;
}

/* =========================
   Typography
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   Images & Media
   ========================= */
img,
video {
  max-width: 100%;
  display: block;
}

/* =========================
   Forms
   ========================= */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   Lists
   ========================= */
ul,
ol {
  list-style: none;
}

.anonce {
  width: 100%;
  height: 40px;
  background-color: #0070d1;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 0 25%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1999;
}
.anonce .iconanonce {
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.anonce .iconanonce i {
  font-size: 18px;
}
.anonce .textanonce {
  flex: 1;
  overflow: hidden;
}
.anonce .textanonce p {
  white-space: nowrap;
  animation: scroll-text 15s linear infinite;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  margin: 0;
  font-weight: 1;
  text-transform: uppercase;
}
.anonce .textanonce p span {
  font-weight: bold;
}
@keyframes scroll-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .anonce {
    padding: 0 15px;
  }
  .anonce .iconanonce i {
    font-size: 1.3rem;
  }
  .anonce .textanonce p {
    font-size: 12px;
    animation-duration: 12s;
  }
}
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid rgba(34, 34, 34, 0.0470588235);
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1999;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9254901961);
}
header .menu {
  width: max-content;
}
header .menu i {
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  transition: 0.3s ease;
}
header .menu i:hover {
  color: #007bff;
}
header .logo {
  width: max-content;
}
header .logo img {
  width: 200px;
}
header .logoBY {
  width: max-content;
}
header .logoBY img {
  width: 150px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  header {
    height: 60px;
    padding: 0 15px;
  }
  header .menu i {
    font-size: 1.5rem;
  }
  header .logo img {
    width: 150px;
  }
  header .logoBY {
    display: none;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  background-image: url("https://gmedia.playstation.com/is/image/SIEPDC/end-of-year-wrap-up-25-hero-desktop-03-en-01dec25?$3200px$");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.386);
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero .herolift {
  width: 70%;
  height: 100%;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero .herolift img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}
.hero .herolift h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #111;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hero .herolift p {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #444;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.6;
}
.hero .herolift button {
  align-self: flex-start;
  margin-top: 10px;
  border: none;
  outline: none;
  padding: 14px 36px;
  background: linear-gradient(135deg, #0070d1, #00a2ff);
  color: #fff;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 112, 209, 0.45);
  transition: all 0.3s ease;
}
.hero .herolift button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 112, 209, 0.7);
}
.hero .herolift button:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 112, 209, 0.4);
}

@media (max-width: 768px) {
  .hero::before {
    background-color: rgba(255, 255, 255, 0.181);
  }
  .hero .herolift {
    width: 90%;
    gap: 10px;
  }
  .hero .herolift img {
    width: 300px;
    opacity: 0.7;
  }
}
.psncards {
  width: 100%;
  height: max-content;
  padding: 15px 15%;
}
.psncards .psncardtitle {
  width: 100%;
  height: 100px;
  background-color: #f8fafb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 15px;
  gap: 10px;
  border-radius: 15px;
}
.psncards .psncardtitle img {
  width: 80px;
}
.psncards .psncardtitle .context {
  width: max-content;
  height: max-content;
}
.psncards .psncardtitle .context h1 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #222;
}
.psncards .psncardtitle .context p {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #222;
  font-weight: lighter;
}
.psncards .cardscontainer {
  width: 100%;
  height: max-content;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 0;
}
.psncards .cardscontainer .card {
  height: 350px;
  background-color: #f8fafb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.psncards .cardscontainer .card img {
  width: 100px;
}
.psncards .cardscontainer .card .libre {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  opacity: 0.5;
}
.psncards .cardscontainer .card p {
  font-size: 2rem;
  color: #222;
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: lighter;
}
.psncards .cardscontainer .card button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  padding: 13px 36px;
  background: linear-gradient(135deg, #222, rgba(42, 42, 42, 0.7254901961));
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.psncards .cardscontainer .card button:hover {
  transform: translateX(-50%) translateY(-2px);
}
.psncards .cardscontainer .card button:active {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .psncards {
    padding: 15px 5%;
  }
  .psncards .psncardtitle {
    width: 100%;
    height: 100px;
  }
  .psncards .psncardtitle img {
    width: 50px;
  }
  .psncards .psncardtitle .context {
    width: max-content;
    height: max-content;
  }
  .psncards .psncardtitle .context h1 {
    font-size: 1.5rem;
  }
  .psncards .psncardtitle .context p {
    font-size: 1rem;
  }
  .psncards .cardscontainer {
    width: 100%;
    height: max-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0;
  }
  .psncards .cardscontainer .card {
    height: 300px;
    background-color: #f8fafb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
  .psncards .cardscontainer .card img {
    width: 80px;
  }
  .psncards .cardscontainer .card .libre {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    opacity: 0.5;
  }
  .psncards .cardscontainer .card p {
    font-size: 1.5rem;
    color: #222;
    font-family: "Roboto", sans-serif;
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: lighter;
  }
  .psncards .cardscontainer .card button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    font-family: "Roboto", sans-serif;
    padding: 13px 0;
    background: linear-gradient(135deg, #222, rgba(42, 42, 42, 0.7254901961));
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  .psncards .cardscontainer .card button:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  .psncards .cardscontainer .card button:active {
    transform: translateX(-50%) translateY(0);
  }
}
.faq {
  padding: 4rem 1.5rem;
  width: 100%;
  margin: auto;
  font-family: "Roboto", sans-serif;
  padding: 50px 20%;
}
.faq h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  color: #222;
  font-size: 3rem;
}
.faq .question {
  background-color: #f8fafb;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq .question-title {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .question-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}
.faq .question-content p {
  padding-bottom: 1rem;
  color: #555;
  font-family: "Roboto", sans-serif;
}
.faq .question.active .question-content {
  max-height: 200px;
}
.faq .question.active .icon {
  transform: rotate(45deg);
}
.faq .question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .faq {
    padding: 50px 5%;
  }
  .faq h1 {
    font-size: 2rem;
  }
  .faq .question-title {
    font-size: 0.8rem;
  }
  .faq .question-content p {
    font-size: 0.8rem;
  }
}
.offdiscont {
  width: 100%;
  height: 300px;
  background-color: #0070d1;
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 0 20%;
  position: relative;
  margin-top: 50px;
}
.offdiscont .offtext {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.offdiscont .offtext h1 {
  color: #fff;
  font-size: 3.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: bolder;
}
.offdiscont .offtext p {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: lighter;
  color: #fff;
}
.offdiscont img {
  width: 40%;
  transform: rotate(344deg);
  position: absolute;
  right: 10%;
  top: -50px;
}

@media (max-width: 768px) {
  .offdiscont {
    padding: 0 5%;
    overflow: hidden;
  }
  .offdiscont .offtext {
    width: 100%;
    z-index: 99;
  }
  .offdiscont img {
    width: 200%;
    top: -10px;
    right: -30%;
    max-width: none;
    opacity: 0.5;
  }
}
.footer {
  background: #f8fafb;
  color: #222;
  padding: 60px 40px 20px;
  font-family: "Roboto", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col img {
  width: 100px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #222;
}

.brand h2 {
  color: #222;
  font-size: 22px;
}

.brand h2 span {
  color: #ff2c2c;
}

.brand p {
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.6;
}

.socials a {
  color: #aaa;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.socials a:hover {
  color: #222;
}

.footer-bottom {
  border-top: 1px solid rgba(34, 34, 34, 0.0588235294);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom .small {
  margin-top: 5px;
  color: #777;
}

.modall {
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8470588235);
}
.modall .modallbox {
  width: 550px;
  height: max-content;
  background-color: #0070d1;
  border-radius: 15px;
  padding: 30px 15px;
  border: 2px solid rgba(34, 34, 34, 0.0941176471);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.modall .modallbox .step {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modall .modallbox .step.hidden {
  opacity: 0;
  visibility: hidden;
}
.modall .modallbox .steps {
  width: 100%;
  height: max-content;
  display: flex;
  font-family: "Roboto", sans-serif;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.modall .modallbox .steps i {
  font-size: 5rem;
  color: #fff;
}
.modall .modallbox .steps .steptext h1 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
}
.modall .modallbox .steps .steptext p {
  color: #fff;
  font-weight: lighter;
  font-size: 1.5rem;
}
.modall .modallbox .deviceuser {
  width: 100%;
  height: max-content;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
}
.modall .modallbox .deviceuser .itemdeviceuser {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 10px;
}
.modall .modallbox .deviceuser .itemdeviceuser img {
  width: 100px;
  transition: transform 0.3s ease;
}
.modall .modallbox .deviceuser .itemdeviceuser p {
  color: #222;
  font-size: 2rem;
  transition: color 0.3s ease;
  font-weight: lighter;
}
.modall .modallbox .deviceuser .itemdeviceuser:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.modall .modallbox .deviceuser .itemdeviceuser:hover img {
  transform: scale(1.1);
}
.modall .modallbox .deviceuser .itemdeviceuser:hover p {
  color: #007bff;
}
.modall .modallbox .loading {
  width: 100%;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  gap: 15px;
  margin-top: 20px;
}
.modall .modallbox .loading .loader {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffffff 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.modall .modallbox .loading .msgs {
  width: 100%;
  height: max-content;
}
.modall .modallbox .loading .msgs p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: lighter;
  text-align: center;
  transition: opacity 0.5s ease;
}
.modall .modallbox .loading .generator p {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9176470588);
}
.modall .modallbox .capatcha {
  width: 100%;
  height: max-content;
  font-family: "Roboto", sans-serif;
  margin-top: 15px;
}
.modall .modallbox .capatcha .codecard {
  width: 100%;
  height: max-content;
  background-color: rgba(255, 255, 255, 0.3019607843);
  border-radius: 15px;
  padding: 15px 5px;
}
.modall .modallbox .capatcha .codecard p {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: lighter;
  text-align: center;
}
.modall .modallbox .capatcha .capatchatext {
  width: 100%;
  height: max-content;
  margin: 15px 0;
  padding: 0 15px;
}
.modall .modallbox .capatcha .capatchatext p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: lighter;
  text-align: center;
}
.modall .modallbox .capatcha .lockerbtn {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.modall .modallbox .capatcha .lockerbtn button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #222;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.modall .modallbox .capatcha .lockerbtn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, #ececec, #ececec);
}
.modall .modallbox .capatcha .lockerbtn button:active {
  transform: scale(0.97);
}
.modall .modallbox .capatcha .offers {
  display: grid;
  gap: 15px;
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.modall .modallbox .capatcha .offers .offer {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  gap: 10px;
}
.modall .modallbox .capatcha .offers .offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.modall .modallbox .capatcha .offers .offer img {
  width: 40px;
  border-radius: 50%;
}
.modall .modallbox .capatcha .offers .offer p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #222;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modall .modallbox .capatcha .offers .offer button {
  background: #0b72c9;
  border: none;
  padding: 8px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modall .modallbox .capatcha .offers .offer button:hover {
  background: #094f8a;
}
.modall .modallbox .capatcha .timedown {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.modall .modallbox .capatcha .timedown p {
  font-family: "Roboto", sans-serif;
  color: #fff;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: lighter;
  letter-spacing: 1px;
}
.modall .modallbox .capatcha .timedown.danger p {
  background: #e63946;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .modall {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .modall .modallbox {
    width: 100%;
    border-radius: 12px;
    padding: 20px 12px;
    gap: 20px;
  }
  .modall .modallbox .step {
    width: 100%;
  }
  .modall .modallbox .step .steps {
    text-align: left;
  }
  .modall .modallbox .step .steps i {
    font-size: 3rem;
  }
  .modall .modallbox .step .steps .steptext h1 {
    font-size: 1.4rem;
  }
  .modall .modallbox .step .steps .steptext p {
    font-size: 1.1rem;
  }
  .modall .modallbox .step .deviceuser .itemdeviceuser {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .modall .modallbox .step .deviceuser .itemdeviceuser img {
    width: 70px;
    height: 70px;
  }
  .modall .modallbox .step .deviceuser .itemdeviceuser p {
    font-size: 1.3rem;
  }
  .modall .modallbox .loading .loader {
    width: 70px;
  }
  .modall .modallbox .loading .msgs p {
    font-size: 1.2rem;
  }
  .modall .modallbox .loading .generator p {
    font-size: 1.3rem;
    text-align: center;
  }
  .modall .modallbox .capatcha .codecard p {
    font-size: 1.2rem;
  }
  .modall .modallbox .capatcha .capatchatext p {
    font-size: 1rem;
  }
  .modall .modallbox .capatcha .offers {
    grid-template-columns: 1fr;
  }
  .modall .modallbox .capatcha .timedown p {
    font-size: 1.2rem;
  }
}
.shake {
  animation-name: shake;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-4px, 0, 0);
  }
  50% {
    transform: translate3d(4px, 0, 0);
  }
  75% {
    transform: translate3d(-4px, 0, 0);
  }
}
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 123, 255, 0.5058823529);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 99999;
  font-family: "Roboto", sans-serif;
}
.side-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.side-menu .side-content {
  position: absolute;
  top: 0;
  right: -50%;
  width: 30%;
  height: 100%;
  background: #007bff;
  padding: 40px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}
.side-menu .side-content nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-menu .side-content nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  position: relative;
}
.side-menu .side-content nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}
.side-menu .side-content nav a:hover::after {
  width: 100%;
}
.side-menu .side-content .close {
  align-self: flex-end;
  font-size: 26px;
  cursor: pointer;
  color: white;
}
.side-menu.active .side-content {
  right: 0;
}

/* Responsive للموبايل */
@media (max-width: 768px) {
  .side-menu .side-content {
    width: 100%;
  }
}
.tos-section {
  min-height: 100vh;
  color: #e5e7eb;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}
.tos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  pointer-events: none;
}

.tos-hero {
  max-width: 1200px;
  margin: 60px auto;
  background: rgba(0, 123, 255, 0.7411764706);
  border-radius: 18px;
  padding: 60px 20px;
  text-align: center;
}
@media (max-width: 700px) {
  .tos-hero {
    margin: 60px 10px;
  }
}
.tos-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.tos-content {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.tos-content h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #007bff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.tos-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0 10px;
  color: rgba(0, 123, 255, 0.6549019608);
}
.tos-content p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(34, 34, 34, 0.7333333333);
  margin-bottom: 14px;
}

.page-loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  font-family: "Roboto", sans-serif;
}
.page-loading.hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.loader-wrapper {
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-wrapper p {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
  color: #222;
}

.loader-logo {
  width: 70px;
  margin-bottom: 15px;
  animation: fadeIn 1s ease-in-out infinite alternate;
}

/* Spinner */
.spinner {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */