/*
Theme Name: Flash4Cash Coming Soon
Theme URI: https://flash4cash.net
Author: Flash4Cash Team
Author URI: https://flash4cash.net
Description: A custom Coming Soon theme for Flash4Cash.net
Version: 1.0
*/
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
header {
  position: absolute;
  top: 0;
  width: 100%;
  background: #000;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #ff0066;
}
h1 {
  font-size: 2.5rem;
  color: #ff0066;
  margin-top: 140px;
}
p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
}
.cta-button {
  margin-top: 30px;
  background-color: #ff0066;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #e6005c;
}
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 600px) {
  nav {
    gap: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
}
