html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #232323;
  color: #C0C0C0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: 32px;
  font-weight: bold;
  color: #C0C0C0;
  margin: 20px 0;
  display: inline-block;
  vertical-align: middle;
}
h2 {
  font-size: 24px;
  color: #00ffcc;
  margin: 20px 0;
}
p {
  font-size: 16px;
  color: #C0C0C0;
  line-height: 1.5;
  max-width: 600px;
  margin: 10px auto;
}
a {
  color: #C0C0C0;
  text-decoration: none;
}
a:visited, a:active {
  color: #C0C0C0;
}
a:hover {
  color: #FFFFFF;
}
.container-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.container-0, .container-1, .container-2, .container-3, .container-4, .container-5, .container-6, .container-7, .container-8, .container-9 {
  flex: 1;
  max-width: 500px;
  padding: 5px;
}
button {
  padding: 10px;
  margin: 5px;
  width: 80px;
  border-radius: 8px;
  background: none;
  border: 2px solid #C0C0C0;
  color: #C0C0C0;
  cursor: pointer;
  transition: 0.25s;
  font-family: Arial, sans-serif;
  font-size: 12px;
}
button:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 0.8em 0.5em -0.4em #FFFFFF;
  transform: translateY(-0.25em);
}
.raise {
  --color: #C0C0C0;
  --hover: #FFFFFF;
  transition: box-shadow 0.25s, transform 0.25s;
}
.click {
    color:#FFFFFF;
}
.click:hover {
    color:#00ffcc;
}
.raise-link {
  text-decoration: none;
  color: #C0C0C0;
  font-size: 12px;
  padding: 0.5em 1em;
  transition: 0.25s;
  display: inline-block;
  background: none;
  text-align: center;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.raise-link:hover,
.raise-link:focus {
  border-color: var(--hover);
  color: #00ffcc;
  box-shadow: 0 0.8em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}
.fancy-container {
  display: inline-block;
  text-align: center;
  line-height: 1;
}
.fancy-three, .fancy-four, .fancy-six, .fancy-foot {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: #00ffcc;
  text-shadow: 
      0 0 5px #00ffcc,
      0 0 10px #00ffcc,
      0 0 20px #00ffcc;
  animation: pulse 2s infinite ease-in-out;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 1;
}
.fancy-three { font-size: 30px; }
.fancy-four { font-size: 40px; }
.fancy-six { font-size: 60px; }
.fancy-foot { font-size: 10px; }
.image-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.hero-section {
  padding: 0 20px;
  background: linear-gradient(180deg, #333, #232323);
}
.features-section {
  padding: 10px 20px;
}
.feature-card {
  background: #333;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 400px;
  max-width: 500px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.8em 0.5em -0.4em #00ffcc;
}
.cta-section {
  padding: 40px 20px;
  background: #1a1a1a;
}
.space {
  flex-grow: 1;
}
.spacer {
  height: 10px;
}
footer {
  margin-top: auto;
  padding: 20px 0;
}
/* Fixed header styles */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #232323;
  z-index: 1000;
  padding-bottom: 16px;
}
/* Content margin */
.content {
  margin-top: 160px; /* Adjust based on header height */
  padding-bottom: 20px;
}
.image-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 10px;
}

.image-item {
  display: flex;
  flex-direction: column;
  border: 0px solid #00ffcc;
  align-items: center;
  padding: 10px 25px;
  width: 200px;
}
.image-item p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #C0C0C0;
  text-align: center;
}
/* Pulse animation */
@keyframes pulse {
  0% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc; }
  50% { text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc; }
  100% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc; }
}
/* Mobile adjustments */
@media (max-width: 600px) {
  .fancy-six { font-size: 40px; }
  .fancy-four { font-size: 30px; }
  .fancy-three { font-size: 20px; }
  .header-fixed { padding: 10px; }
  .content { margin-top: 120px; }
}
.image-item img {
      transition: transform 0.3s ease;
      display: block;
      margin: 0 auto;
    }
.image-item img:hover {
    transform: scale(4.5);
	border: 1px solid #00ffcc;
	background-color: #232323;
    }
.image-big img {
      transition: transform 0.3s ease;
      display: block;
      margin: 0 auto;
    }
.image-big img:hover {
    transform: scale(2.5);
	border: 1px solid #00ffcc;
	background-color: #232323;
    }
.image-verybig img {
      transition: transform 0.3s ease;
      display: block;
      margin: 0 auto;
    }
.image-verybig img:hover {
    transform: scale(1.5);
	border: 1px solid #00ffcc;
	background-color: #232323;
    }