
/* HARD RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0b1828;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}

/* MAIN CARD */
.container {
  width: 100%;
  max-width: 760px;
  background: linear-gradient(180deg, #10233a, #0b1828);
  border: 1px solid rgba(214,180,90,0.25);
  border-radius: 22px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* TITLE */
.title {
  font-size: 42px;
  font-weight: 800;
  color: #d6b45a;
  margin-bottom: 18px;
  line-height: 1.1;
}

/* TEXT */
.text {
  font-size: 17px;
  color: #e7edf5;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* INFO BOX */
.info-box {
  margin-top: 20px;
  padding: 18px;
  background: rgba(214,180,90,0.08);
  border: 1px solid rgba(214,180,90,0.25);
  border-left: 4px solid #d6b45a;
  border-radius: 14px;
  font-size: 15px;
  color: #e7edf5;
  line-height: 1.6;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  background: #d6b45a;
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.button:hover {
  background: #e3c471;
}

/* MOBILE */
@media (max-width: 600px){
  .title { font-size: 32px; }
  .text { font-size: 15px; }
}

body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
