/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #F0F4F1;
  --orange: #E4661B;
  --dark-base: #1A2426;
  --orange-dark: #A7520D;
}

body {
  line-height: 1.6;
  color: var(--white);
  background: var(--dark-base);
  font-weight: 400;
  font-style: normal;
}

/* Container */
.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Typography */
h1, h2, h3 {
  font-family: 'Michroma', monospace;
}
.microma {
  font-family: 'Michroma', monospace;
}
.tifcoin-brand {
  color: #ff751f;
  font-size: 1.5rem;
}

p {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: transparent !important;
  border-color: var(--orange) !important;
  transform: translateY(-5px);
}

.btn-secondary {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-secondary:hover {
  background: #c25f0f;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  /*background: linear-gradient(135deg, var(--dark-base) 0%, #2a1810 50%, var(--orange-dark) 100%);*/
  background-image: url(./images/fire_tr.png);
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.hero-text .btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 3px solid;
  border-color: var(--white);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .img-fluid {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}


.character-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.character-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.dog-face {
  width: 180px;
  height: 180px;
  background: var(--orange-dark);
  border-radius: 50%;
  position: relative;
  border: 4px solid var(--white);
}

.eyes {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.eye {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
}

.nose {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: var(--white);
  border-radius: 10px;
}

.hat {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 15px;
  background: var(--orange);
  border-radius: 8px;
}

.speech-bubble {
  position: absolute;
  top: -20px;
  right: -40px;
  background: rgba(26, 36, 38, 0.9);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 20px;
  border: 2px solid var(--orange);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--orange);
}

/* Origin Section */
.origin-section {
  background: linear-gradient(135deg, var(--orange) 0%, #ff751f 100%);
  padding: 80px 0;
  color: var(--dark-base);
}

.origin-section h2 {
  font-size: 2.7rem;
  text-shadow: 1px 1px 1px black;
  letter-spacing: .6rem;
}

.origin-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.origin-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  line-height: 1.2;

}

.origin-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.origin-text strong {
  font-weight: 700;
}

.origin-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-robot-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-base) 0%, var(--orange-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.robot-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.robot-head {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-eyes {
  display: flex;
  gap: 20px;
}

.robot-eye {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
}

.people-silhouettes {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.person {
  width: 25px;
  height: 60px;
  background: var(--white);
  border-radius: 5px 5px 0 0;
  opacity: 0.8;
}

.person:nth-child(2) {
  height: 70px;
}

.person:nth-child(4) {
  height: 55px;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--dark-base) 100%);
  padding: 80px 0;
  position: relative;
}

.features-header {
  background: rgba(26, 36, 38, 0.9);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid var(--orange);
  text-align: center;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.features-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(26, 36, 38, 0.8);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid var(--orange);
  text-align: left;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--orange);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.closing-text {
  background: rgba(26, 36, 38, 0.9);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--orange);
  text-align: center;
}

.closing-text p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Tokenomics Section */
.tokenomics-section {
  background: linear-gradient(135deg, var(--orange) 0%, #ff751f 100%);
  padding: 80px 0;
  color: var(--dark-base);
}

.tokenomics-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tokenomics-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 1px 1px 1px black;
}

.tokenomics-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tokenomics-list {
  list-style: none;
  margin: 30px 0;
}

.tokenomics-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.tokenomics-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--dark-base);
  font-weight: 700;
  font-size: 1.2rem;
}

.tokenomics-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
p.distribution-text {
  padding-top: 2rem;
  margin-bottom: 20px;
  border-top: 3px solid;
  border-color: var(--white);
  color: var(--white);
  text-align: center;
}
.burning-coins-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-base) 0%, var(--orange-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.coin-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -10px;
  position: relative;
}

.coin {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.coin:nth-child(1) { z-index: 5; }
.coin:nth-child(2) { z-index: 4; }
.coin:nth-child(3) { z-index: 3; }
.coin:nth-child(4) { z-index: 2; }
.coin:nth-child(5) { z-index: 1; }

.flames {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
}

.flame {
  width: 20px;
  height: 40px;
  background: linear-gradient(to top, var(--orange), #ff751f);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flicker 1s infinite alternate;
}

.flame:nth-child(2) {
  animation-delay: 0.3s;
}

.flame:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes flicker {
  0% { transform: scale(1) rotate(-2deg); }
  100% { transform: scale(1.1) rotate(2deg); }
}

/* How to Buy Section */
.how-to-buy-section {
  background: 
    radial-gradient(ellipse at top, rgba(228, 102, 27, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse at bottom, rgba(167, 82, 13, 0.04) 0%, transparent 60%),
    var(--dark-base);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.orange-text {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(228, 102, 27, 0.3);
}

.step-section {
  background: rgba(15, 20, 22, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(228, 102, 27, 0.15);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.step-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(228, 102, 27, 0.5) 30%, 
    var(--orange) 50%, 
    rgba(228, 102, 27, 0.5) 70%, 
    transparent 100%
  );
  animation: ember-glow 6s ease-in-out infinite;
}

@keyframes ember-glow {
  0%, 100% { 
    opacity: 0.3;
    transform: translateX(-10%);
  }
  50% { 
    opacity: 1;
    transform: translateX(10%);
  }
}

.step-number {
  background: var(--dark-base);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--orange);
  font-family: 'Michroma', monospace;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 
    0 0 15px rgba(228, 102, 27, 0.2),
    inset 0 0 10px rgba(228, 102, 27, 0.05);
}

.step-title {
  font-size: clamp(1.5rem, 2.7vw, 2.7rem);
  color: var(--white);
  font-family: 'Michroma', monospace;
}

.step-text {
  text-align: left;
}

.step-text h2 {
  font-size: 1.6rem;
  color: var(--white);
}

.step-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.exchange-info, .wallet-info, .raydium-info, .swap-info, .benefit-item, .benefits-footer {
  background: rgba(10, 15, 17, 0.6);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(228, 102, 27, 0.1);
  margin-bottom: 20px;
}

.exchange-info h3, .wallet-info h3, .raydium-info h3, .swap-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--orange);
  font-family: 'Michroma', monospace;
}
/*
h3.corephi-text, p.corephi-text {
  color: var(--dark-base);
  font-weight: 700 !important;
}*/

.benefits-section {
  background: rgba(10, 15, 17, 0.7);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(228, 102, 27, 0.15);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.benefits-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(228, 102, 27, 0.4) 20%,
    var(--orange) 50%,
    rgba(228, 102, 27, 0.4) 80%,
    transparent 100%
  );
  opacity: 0.6;
}

.benefits-section h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--white);
  font-family: 'Michroma', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.benefits-section h3 i {
  color: var(--orange);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(228, 102, 27, 0.4));
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--dark-base);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 
    0 0 15px rgba(228, 102, 27, 0.2),
    inset 0 0 10px rgba(228, 102, 27, 0.05);
  transition: all 0.3s ease;
}

.benefit-icon:hover {
  box-shadow: 
    0 0 25px rgba(228, 102, 27, 0.4),
    inset 0 0 15px rgba(228, 102, 27, 0.1);
  border-color: #ff7f39;
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--white);
  font-family: 'Michroma', sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

.benefit-text p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
  font-family: 'Arimo', sans-serif;
  font-weight: normal;
  color: var(--orange);
}

.benefits-footer {
  text-align: center;
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 25px;
  line-height: 1.5;
}

.exchanges-info {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 15px;
  color: var(--orange);
}

.step-instructions {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.step-instructions li {
  background: rgba(10, 15, 17, 0.5);
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  border-left: 2px solid var(--orange);
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.step-instructions li:hover {
  background: rgba(10, 15, 17, 0.8);
  border-left-width: 3px;
  box-shadow: 0 0 20px rgba(228, 102, 27, 0.1);
}

.step-instructions li i {
  color: var(--orange);
  font-size: 1.4rem;
  width: 20px;
  text-align: center;
  float: left;
  margin-right: 1rem;
  filter: drop-shadow(0 0 5px rgba(228, 102, 27, 0.3));
}

.step-instructions a {
  color: var(--orange);
}

.warning-text {
  background: rgba(10, 15, 17, 0.6);
  border: 1px solid rgba(228, 102, 27, 0.2);
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--orange);
  opacity: 0.9;
}

.the-tif-community-section {
  background-image: url(./images/firebase.jpg)!important;
  background-size: cover;
}

/* Roadmap Section */
/* Roadmap Section */
.roadmap-section {
  background: 
    radial-gradient(ellipse at top, rgba(228, 102, 27, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse at bottom, rgba(167, 82, 13, 0.04) 0%, transparent 60%),
    var(--dark-base);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 60px;
}

.roadmap-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.roadmap-coin {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  font-family: 'Michroma', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
  box-shadow: 
    0 0 20px rgba(228, 102, 27, 0.4),
    inset 0 0 15px rgba(228, 102, 27, 0.1);
}

.roadmap-title h2 {
  font-family: 'Michroma', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.roadmap-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0.9;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.phase-card {
  background: rgba(15, 20, 22, 0.8);
  border: 1px solid rgba(228, 102, 27, 0.15);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(228, 102, 27, 0.5) 30%, 
    var(--orange) 50%, 
    rgba(228, 102, 27, 0.5) 70%, 
    transparent 100%
  );
  animation: ember-glow 6s ease-in-out infinite;
}

.phase-card:hover {
  border-color: rgba(228, 102, 27, 0.3);
  box-shadow: 0 0 30px rgba(228, 102, 27, 0.1);
}

@keyframes ember-glow {
  0%, 100% { 
    opacity: 0.3;
    transform: translateX(-10%);
  }
  50% { 
    opacity: 1;
    transform: translateX(10%);
  }
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.phase-number {
  background: var(--dark-base);
  color: var(--orange);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Michroma', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  border: 2px solid var(--orange);
  box-shadow: 
    0 0 15px rgba(228, 102, 27, 0.2),
    inset 0 0 10px rgba(228, 102, 27, 0.05);
}

.phase-title {
  font-family: 'Michroma', monospace;
  font-size: 1.5rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(228, 102, 27, 0.3);
}

.phase-content {
  background: rgba(10, 15, 17, 0.6);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(228, 102, 27, 0.1);
  text-align: left;
}

.phase-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.9;
}

.phase-content p:last-child {
  margin-bottom: 0;
}

/* Special styling for Phase 3 with question mark */
.phase-3 .phase-number {
  background: var(--orange-dark);
  font-size: 1.5rem;
  border-color: var(--orange-dark);
}

.phase-3 .phase-title {
  color: var(--orange-dark);
}

/* Bottom illustration area */
/* Bottom illustration area */
.roadmap-illustration {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.roadmap-footer {
  background: rgba(10, 15, 17, 0.7);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(228, 102, 27, 0.15);
  text-align: center;
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
}

.roadmap-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(228, 102, 27, 0.4) 20%,
    var(--orange) 50%,
    rgba(228, 102, 27, 0.4) 80%,
    transparent 100%
  );
  opacity: 0.6;
}

.roadmap-footer p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
  color: var(--white);
}

.roadmap-footer p:last-child {
  margin-bottom: 0;
}

/* Fine Print Section */
.fine-print-section {
  background: 
    radial-gradient(ellipse at top, rgba(228, 102, 27, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse at bottom, rgba(167, 82, 13, 0.04) 0%, transparent 60%),
    var(--dark-base);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
}

.fine-print-container {
  background: rgba(15, 20, 22, 0.8);
  border: 1px solid rgba(228, 102, 27, 0.15);
  border-radius: 12px;
  padding: 40px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.fine-print-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(228, 102, 27, 0.5) 30%, 
    var(--orange) 50%, 
    rgba(228, 102, 27, 0.5) 70%, 
    transparent 100%
  );
  animation: ember-glow 6s ease-in-out infinite;
}

.fine-print-header {
  margin-bottom: 30px;
}

.fine-print-header h2 {
  font-family: 'Michroma', monospace;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.fine-print-header .orange-text {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(228, 102, 27, 0.3);
}

.fine-print-content {
  background: rgba(10, 15, 17, 0.6);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(228, 102, 27, 0.1);
  margin-bottom: 30px;
  text-align: left;
}

.fine-print-content p {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.9;
}

.fine-print-content p:last-child {
  margin-bottom: 0;
}

.fine-print-content .orange-text {
  color: var(--orange);
  font-weight: 700;
}

.fine-print-highlight {
  background: rgba(10, 15, 17, 0.6);
  border: 1px solid rgba(228, 102, 27, 0.2);
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  position: relative;
}

.fine-print-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(228, 102, 27, 0.4) 20%,
    var(--orange) 50%,
    rgba(228, 102, 27, 0.4) 80%,
    transparent 100%
  );
  opacity: 0.6;
}

.fine-print-highlight p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
}

.fine-print-highlight .orange-text {
  color: var(--orange);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(228, 102, 27, 0.3);
}

.fine-print-cta {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: rgba(10, 15, 17, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(228, 102, 27, 0.1);
}

.fine-print-cta .btn {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: var(--white);
  font-family: 'Michroma', monospace;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 15px rgba(228, 102, 27, 0.2),
    inset 0 0 10px rgba(228, 102, 27, 0.05);
}

.fine-print-cta .btn:hover {
  background: #ff7f39;
  border-color: #ff7f39;
  box-shadow: 
    0 0 25px rgba(228, 102, 27, 0.4),
    inset 0 0 15px rgba(228, 102, 27, 0.1);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 10px rgba(228, 102, 27, 0.2),
    inset 0 0 8px rgba(228, 102, 27, 0.05);
}

.social-link:hover {
  transform: scale(1.1);
  border-color: #ff7f39;
  box-shadow: 
    0 0 20px rgba(228, 102, 27, 0.4),
    inset 0 0 12px rgba(228, 102, 27, 0.1);
}

/* Footer */
.footer-section {
  background-image: url('./images/SunandFireCOIN.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 36rem;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 36, 38, 0.3);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 145%;
  height: auto;
  border-radius: 50%;
}



@media (max-width: 480px) {
  .hero-section,
  .origin-section,
  .features-section,
  .tokenomics-section,
  .how-to-buy-section {
      padding: 60px 0;
  }

  .container {
      padding: 0 15px;
  }

  .features-header,
  .step-section,
  .closing-text {
      padding: 30px 20px;
  }

  .feature-card {
      padding: 30px 20px;
  }

  .character-placeholder {
      height: 250px;
  }

  .dog-face {
      width: 150px;
      height: 150px;
  }

  .ai-robot-placeholder,
  .burning-coins-placeholder {
      height: 300px;
  }
  .container {
                padding: 0 15px;
            }

            .roadmap-section {
                padding: 40px 0;
            }

            .roadmap-footer {
                padding: 30px 20px;
            }

            .phase-card {
                padding: 20px;
            }

            .character-container {
                width: 200px;
                height: 200px;
            }

            .dog-character {
                width: 120px;
                height: 120px;
            }

            .speech-bubble {
                position: relative;
                right: auto;
                top: auto;
                margin-top: 20px;
                max-width: 100%;
            }

            .speech-bubble::after {
                display: none;
            }
            .container {
              padding: 0 15px;
          }

          .roadmap-section {
              padding: 40px 0;
          }

          .roadmap-footer {
              padding: 30px 20px;
          }

          .phase-card {
              padding: 20px;
          }

          .character-container {
              width: 200px;
              height: 200px;
          }

          .dog-character {
              width: 120px;
              height: 120px;
          }

          .speech-bubble {
              position: relative;
              right: auto;
              top: auto;
              margin-top: 20px;
              max-width: 100%;
          }

          .speech-bubble::after {
              display: none;
          }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .step-content {
    display: block !important;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .benefits-section {
    padding: 30px 20px;
}
.benefit-text { 
  margin-left: -.4rem;
}
.benefit-text h4 {
  font-size: 1rem;
}

.benefit-text p {
  font-size: .85rem;
}

.benefit-item {
    flex-direction: row;
    text-align: left;
    gap: 15px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  margin-left: -1.5em;
}

.roadmap-section {
  padding: 60px 0;
}

.roadmap-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.roadmap-title {
  flex-direction: column;
  gap: 15px;
}

.roadmap-coin {
  width: 60px;
  height: 60px;
  font-size: 1rem;
}

.phase-card {
  padding: 25px;
}

.character-container {
  width: 250px;
  height: 250px;
}

.dog-character {
  width: 150px;
  height: 150px;
}

.speech-bubble {
  right: -40px;
  font-size: 0.8rem;
  max-width: 150px;
  padding: 10px 15px;
}
.fine-print-section {
  padding: 40px 0 30px 0;
}

.fine-print-container {
  padding: 30px 20px;
  margin: 0 15px;
}

.fine-print-header h2 {
  font-size: 1.3rem;
}

.fine-print-content p {
  font-size: 0.9rem;
}

.fine-print-highlight {
  padding: 15px;
  margin: 20px 0;
}

.fine-print-highlight p {
  font-size: 1rem;
}

.social-links {
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
}

.footer-section {
  padding: 60px 0;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-logo img {
  width: 70px;
  height: 70px;
}

.warning-text {
  margin-bottom: 2rem;
}
.hero-image {
  margin-top: 2rem;
}
}

@media (max-width:991px) {
  h3.corephi-text, p.corephi-text {
    color: var(--white)!important;
  }
}

@media (max-width: 1024px) {
  .roadmap-illustration {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .speech-bubble {
      right: -60px;
      font-size: 0.9rem;
      max-width: 180px;
  }
}