body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #2a0033);
    color: #fff;
}

header {
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #ff4d4d;
}

.logo-img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
}

nav a:hover {
    color: #00e6e6;
    text-shadow: 0 0 10px #00e6e6;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('nintindel-galaxy-bg.png') no-repeat center/cover;
    position: relative;
}

.hero h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 36px;
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px #00e6e6;
}

.hero p {
    font-size: 24px;
    margin: 10px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 12px 24px;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Press Start 2P', cursive;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.1);
    background: #00e6e6;
}

.cta-button.secondary {
    background: #333;
    border: 2px solid #ff4d4d;
}

.hero-animation {
    margin-top: 20px;
    height: 100px;
    background: url('tin-knight-sprite.png') no-repeat center;
    animation: sprite 0.8s steps(4) infinite;
}

@keyframes sprite {
    100% { background-position: -400px 0; }
}

.content {
    padding: 50px 20px;
    text-align: center;
}

.content h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 28px;
}

.guide-steps, .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step, .community-card {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid #00e6e6;
    transition: transform 0.2s;
}
.step:hover, .community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00e6e6;
}
.ticker {
  text-align: center;
  color: #00e6e6 !important;
  font-family: 'Arial', sans-serif;
  margin: 20px 0;
  padding: 10px;
  display: block !important;
  visibility: visible !important;
  position: relative;
  z-index: 100;
  background: #1a1a1a;
  border-radius: 5px;
}
.ticker a {
  color: #ff4d4d !important;
  text-decoration: underline;
}
.content {
  display: block !important;
  visibility: visible !important;
  position: relative;
}
.safety-note {
  color: #ffffff;
  font-size: 0.9em;
  margin-top: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    border-top: 4px solid #ff4d4d;
}
footer a {
    color: #00e6e6;
    text-decoration: none;
}
