/*
Theme Name: Tron Flash Future
Theme URI: https://tronnetworkflashtool.com/
Author: Tron Network Flash Tool
Author URI: https://tronnetworkflashtool.com/
Description: Educational blockchain research theme focused on flash USDT misinformation, escrow security, and fraud awareness.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tron-flash-future
*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.7;
}

header, footer {
  background: #f7f7f7;
  padding: 1.5rem;
  text-align: center;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
}

.disclaimer {
  background: #fff4f4;
  border: 1px solid #ffcccc;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* ===== Primary Menu - Horizontal & Responsive ===== */
.primary-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center on desktop */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.primary-menu li {
  display: inline-block;
}

.primary-menu li a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s;
}

.primary-menu li a:hover {
  color: #004999;
}

/* Hamburger toggle for mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #0066cc;
}

/* Hide menu on mobile by default */
@media screen and (max-width: 768px) {
  .primary-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    background: #f7f7f7;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .primary-menu li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu.active {
    display: flex;
  }
}

/* ===== Floating Telegram Button (Left, With Label, Responsive) ===== */
.floating-telegram {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  background-color: #0088cc;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 9999;
  animation: pulse 2.5s infinite;
  transition: background-color 0.3s, transform 0.3s;
}

.floating-telegram:hover {
  background-color: #006699;
  transform: scale(1.05);
}

.floating-telegram img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.telegram-label {
  font-size: 16px;
  white-space: nowrap;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
  50% { transform: scale(1.05); box-shadow: 0 6px 10px rgba(0,0,0,0.3); }
  100% { transform: scale(1); box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
}

/* Responsive adjustments for floating Telegram button */
@media screen and (max-width: 768px) {
  .floating-telegram {
    padding: 8px 12px;
    bottom: 15px;
    left: 15px;
  }

  .floating-telegram img {
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }

  .telegram-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .floating-telegram {
    padding: 6px 10px;
    bottom: 12px;
    left: 12px;
  }

  .floating-telegram img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }

  .telegram-label {
    font-size: 12px;
  }
}
