@import url('https://fonts.googleapis.com/css2?family=Shadows Into Light Two&family=Teko&family=Barriecito&family=Zen+Dots&family=Roboto:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-family: 'Shadows Into Light Two', arial, sans-serif;
  font-size: 2rem;
  color: #fff0ac;
}


body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 20px;
}

.title-container {
  margin: 2rem 0;
  text-align: center;
  cursor: pointer;
}

.title {
  font-family: 'Shadows Into Light Two', arial, sans-serif;
  font-size: 4rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  text-transform: none !important;
  /* Force no transformation */
}

.lightning {
  margin: 0 0.5rem;
  color: yellow;
  animation: pulse 1.5s infinite alternate;
  display: flex;
  align-items: center;
  height: 30px
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 2px yellow);
  }

  100% {
    filter: drop-shadow(0 0 10px yellow) drop-shadow(0 0 15px yellow);
  }
}

.find-out-more {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ccc;
}

.content-section {
  width: 100%;
  max-width: 600px;
}

.about-section {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.app-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff6b;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.app-title {
  font-family: 'Zen Dots', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: rgb(246 233 161);
  animation: title-pulse 4.5s infinite alternate;
}

.wow-settings-title {
  font-family: Arial, sans-serif !important;
  color: #F5F5DC !important;
  animation: none !important;
}

.wow-settings-card {
  border: 1px solid #d26420 !important;
}

.wow-settings-button {
  background-color: #d26420 !important;
}

.groove-slider-card {
  border: 1px solid #fff !important;
}

/* Buy me a coffee button styling */
.coffee-button-wrapper {
  transform: scale(0.75);
  display: flex;
  justify-content: center;
}

.coffee-button-wrapper * {
  transform: scale(1) !important;
}

[data-name="bmc-button"],
.bmc-button,
#bmc-button,
iframe[src*="buymeacoffee"],
div[id*="bmc"],
.bmc-btn {
  transform: scale(0.75) !important;
  margin: 0 auto !important;
}

@keyframes title-pulse {
  0% {
    filter: drop-shadow(0 0 2px rgb(215, 135, 6));
  }

  100% {
    filter: drop-shadow(0 0 8px rgb(255, 140, 0)) drop-shadow(0 0 12px #0ff);
  }
}

.app-description {
  margin-bottom: 15px;
  line-height: 1.5;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.store-link {
  display: inline-block;
  background-color: #222;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  animation: button-pulse 3.5s infinite alternate;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  cursor: pointer;
  border: 1px solid #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes button-pulse {
  0% {
    box-shadow: 0 0 2px #0ff;
  }

  100% {
    box-shadow: 0 0 8px #0ff, 0 0 12px #0ff;
  }
}

.store-link:hover {
  background-color: #444;
}

.video-button:hover {
  background-color: #555;
}

footer {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  width: 100%;
}

.contact-info {
  margin-top: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  animation: modal-glow 3s infinite alternate;
}

@keyframes modal-glow {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
  }
}

.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Chop Block Theme */
.chop-block-card {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(252, 252, 124, 0.05));
  border: 2px solid #4ecdc4;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  animation: chop-block-glow 3s infinite alternate;
}

@keyframes chop-block-glow {
  0% {
    border-color: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
  }
  100% {
    border-color: #fcfc7c;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5), 0 0 10px rgba(252, 252, 124, 0.3);
  }
}

.chop-block-title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4ecdc4 !important;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
  animation: chop-block-title-pulse 4.5s infinite alternate !important;
}


.chop-block-subtitle {
  font-size: 0.9rem;
  color: #fcfc7c;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(252, 252, 124, 0.5);
}

.chop-block-description {
  color: #ffffff;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.chop-block-button {
  background: linear-gradient(135deg, #4ecdc4, #fcfc7c);
  color: #000000 !important;
  font-weight: bold;
  border: 2px solid #ffffff;
  border-radius: 8px !important;
  box-shadow: 0 0 10px rgba(78, 205, 196, 0.4);
  animation: chop-block-button-pulse 2s infinite alternate !important;
  transition: all 0.3s ease;
}

@keyframes chop-block-button-pulse {
  0% {
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.6);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.8), 0 0 10px rgba(252, 252, 124, 0.6);
    transform: scale(1.02);
  }
}

.chop-block-button:hover {
  background: linear-gradient(135deg, #fcfc7c, #4ecdc4) !important;
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.8), 0 0 15px rgba(252, 252, 124, 0.8);
  transform: scale(1.05);
}

/* CTA Button */
.cta-container {
  margin-top: 15px;
}

.cta-button {
  background: transparent;
  color: #4ecdc4;
  border: 2px solid #4ecdc4;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: #fcfc7c;
  color: #fcfc7c;
}

/* About Modal Styles */
.about-modal-content {
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #000000, #111111);
  border: 2px solid #4ecdc4;
  box-shadow: 0 0 30px rgba(78, 205, 196, 0.6);
  animation: about-modal-glow 3s infinite alternate;
}

@keyframes about-modal-glow {
  0% {
    border-color: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
  }
  100% {
    border-color: #fcfc7c;
    box-shadow: 0 0 40px rgba(78, 205, 196, 0.8), 0 0 20px rgba(252, 252, 124, 0.4);
  }
}

.about-modal-body {
  padding: 30px;
  color: #ffffff;
}

.about-section-modal h2 {
  color: #4ecdc4;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.about-section-modal p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-section-modal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(78, 205, 196, 0.3);
}

.contact-section-modal h3 {
  color: #fcfc7c;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(252, 252, 124, 0.5);
}

.contact-section-modal p {
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  background: rgba(78, 205, 196, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #4ecdc4;
}

.contact-item strong {
  color: #4ecdc4;
}

.social-section-modal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(252, 252, 124, 0.3);
  text-align: center;
}

.social-section-modal h3 {
  color: #fcfc7c;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(252, 252, 124, 0.5);
}

.social-icons-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.social-placeholder {
  color: #ffffff;
  font-style: italic;
  opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }

  .lightning {
    font-size: 1.8rem;
  }

  .modal-content {
    width: 95%;
  }

  .about-modal-content {
    width: 95%;
    max-height: 85vh;
    margin: 20px;
  }

  .about-modal-body {
    padding: 20px;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .contact-methods {
    gap: 8px;
  }

  .contact-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .close-button {
    top: -35px;
    font-size: 24px;
  }
}