/* style.css - dla emaitoken.io */

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(180deg, #0d0d2b, #090909);
  color: white;
  text-align: center;
}

h1, h2, h3 {
  color: #00ffff;
  margin-bottom: 0.5em;
}

p {
  max-width: 600px;
  margin: 0 auto 1.5em;
  line-height: 1.6;
}

.section {
  padding: 100px 10px;
}
  .buy-btn {
    background-color: #00ffff;
    color: #000;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff;
}
}

table {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  border-collapse: collapse;
  overflow-x: auto;
}

th, td {
  border: 1px solid #00ffff;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

th {
  background-color: #111;
  font-weight: bold;
}

.glow-button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #00ffff;
  border: none;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.glow-button:hover {
  background-color: #0ff;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

#countdown {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffff;
  margin-top: 10px;
}

img.logo {
  width: 100px;
  margin: 0 auto 20px;
  display: block;
}

.faq-question {
  background-color: #1a1a1a;
  border: 1px solid #00ffff;
  margin: 10px auto;
  padding: 10px;
  cursor: pointer;
  max-width: 600px;
  text-align: left;
}

.faq-question:hover {
  background-color: #222;
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #0e0e0e;
  border-top: 1px solid #00ffff;
}

.faq-question.active + .faq-answer {
  display: block;
}

.wallet-section {
  margin-top: 30px;
}

.wallet-address {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #00ffff;
}

@media screen and (max-width: 600px) {
  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  animation: fadeIn 1s ease-out forwards;
}

h1, h2, h3, p {
  animation: fadeIn 1.2s ease-out forwards;
}

.section {
  animation: fadeIn 1.4s ease-out forwards;
}

.buy-btn, .connect-btn {
  animation: fadeIn 1.6s ease-out forwards;
}
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  th, td {
    font-size: 12px;
    padding: 8px;
    @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.section h2,
.section p {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
  }
}
/* HERO SECTION */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #00f7ff;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #00f7ff;
}

#dynamic-slogan {
  font-size: 20px;
  font-style: italic;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; transform: scale(1.03); }
  100% { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
