* {
  box-sizing: border-box;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
}

:root {
  --panel: #fff;
  --gold-bg: #fcedc5;
  --gold-border: #d4b44c;
  --text: #000;
}

/* GLOBAL PAGE */
body {
  margin: 0;
  background: #f5f5f5;
}

/* HEADER TEXT STYLE */
.header-text {
  background: #000;
  color: white;
  padding: 35px 22px 22px 22px;
}

.header-title {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

.gold-text {
  background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.silver-text {
  background: linear-gradient(90deg, #c0c0c0, #f2f2f2, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-subtitle {
  font-size: 22px;
  margin-top: 6px;
  opacity: 0.9;
}

.header-since {
  font-size: 18px;
  margin-top: 10px;
  text-align: right;
  opacity: 0.85;
}

/* FIXED TAG */
.fixed-tag {
  position: fixed;
  right: 18px;
  top: 120px;
  width: 110px;
  z-index: 9999;
}
.fixed-tag img {
  width: 100%;
  border-radius: 8px;
}

/* MENU */
.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  padding-bottom: 6px;
  font-size: 18px;
}

.menu a.active {
  border-bottom: 3px solid var(--gold-border);
}

/* LIVE TABLE */
.live-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.live-table th,
.live-table td {
  padding: 14px;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
}

.live-table th {
  background: #fff7d7;
  font-weight: 700;
}

/* CONTAINER */
.container {
  max-width: 1080px;
  margin: 25px auto;
  padding: 12px;
}

/* CONTACT PAGE WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 20px;
  flex: 1;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-row {
  display: flex;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.contact-form button {
  padding: 12px;
  background: var(--gold-border);
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

/* ADDRESS BOX */
.address-box {
  flex: 1;
  background: #fffde6;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* BANK PAGE BOX */
.bank-box {
  width: 60%;
  margin: auto;
  background: #fffde6;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--gold-border);
  text-align: center;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 12px;
  margin-top: 30px;
  background: #fff;
  border-top: 1px solid #ddd;
}

/* INSTAGRAM ICON */
.insta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.insta-icon {
  width: 26px;
  height: 26px;
}

.insta-link {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 17px;
}

.insta-link:hover {
  color: #d6249f;
}

/* ARROWS */
.arrow-up {
  color: green;
  font-weight: 900;
  font-size: 18px;
  margin-left: 6px;
}

.arrow-down {
  color: red;
  font-weight: 900;
  font-size: 18px;
  margin-left: 6px;
}

.price-flash {
  animation: flash 0.6s ease-in-out;
}

@keyframes flash {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* MOBILE FIXES */
@media(max-width: 768px) {

  .header-title {
    font-size: 28px;
    text-align: center;
  }

  .header-subtitle,
  .header-since {
    text-align: center;
  }

  .fixed-tag {
    top: 95px;
    right: 10px;
    width: 75px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-row {
    flex-direction: column;
  }

  .address-box {
    width: 100%;
  }

  .bank-box {
    width: 90%;
  }

  .live-table th,
  .live-table td {
    padding: 10px;
    font-size: 15px;
  }

  .menu {
    gap: 18px;
  }
}

@media(max-width: 480px) {
  .header-title { font-size: 22px; }
  .menu a { font-size: 15px; }
  .live-table td { font-size: 14px; }
}
