/**
 * Particle Network Animation Styles
 * 
 * Author: DogSoulDev (DsD)
 * Copyright © 2025 DogSoulDev. All rights reserved.
 */

/* ============================================
   PARTICLE NETWORK ANIMATION - Profile Section
   ============================================ */

/* Particle canvas styles removed - now in toggle container */

/* Animated Text Container */
.animated-text-container {
  margin: 30px 0;
  padding: 30px 20px;
  background: #fff;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
  position: relative;
  overflow: hidden;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#animatedText {
  position: relative;
  width: 100%;
  height: 50px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#animatedText span {
  font-family: var(--font-manga);
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  #animatedText span {
    font-size: 1.5rem;
  }
  
  .animated-text-container {
    min-height: 60px;
    padding: 20px 15px;
  }
}

@media (max-width: 540px) {
  #animatedText span {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }
  
  .animated-text-container {
    min-height: 55px;
    padding: 18px 12px;
    border-width: 3px;
    box-shadow: 6px 6px 0 #000;
  }
  
  #animatedText {
    height: 45px;
  }
}

@media (max-width: 430px) {
  #animatedText span {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  
  .animated-text-container {
    min-height: 50px;
    padding: 15px 10px;
    border-width: 3px;
    box-shadow: 5px 5px 0 #000;
  }
  
  #animatedText {
    height: 42px;
  }
}

@media (max-width: 360px) {
  #animatedText span {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
  
  .animated-text-container {
    min-height: 48px;
    padding: 12px 8px;
    border-width: 3px;
    box-shadow: 5px 5px 0 #000;
  }
  
  #animatedText {
    height: 40px;
  }
}

/* Galaxy Z Fold 6 Cover Display */
@media (max-width: 280px) {
  #animatedText span {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  
  .animated-text-container {
    min-height: 50px;
    padding: 15px 10px;
    border-width: 3px;
    box-shadow: 6px 6px 0 #000;
  }
  
  #animatedText {
    height: 40px;
  }
}
