/* ----------------------------- Container ----------------------------- */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 5%;
}
/* ----------------------------- Separator ----------------------------- */
.blue-separator {
  border: none;
  height: 3px;
  background-color: #0ff;
  margin: 1.5rem 0;
  border-radius: 2px;
}
/* ---------------------------
   STARFIELD
--------------------------- */
#starfield {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: "-1"; background: #000;
    pointer-events: none;
}

body, .scale-wrapper { position: relative; z-index: 1; }

/* ----------------------------- Hero Section ----------------------------- */
.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0ff 0%, #f0f 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.hero-section h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.image-wrapper {
  display: block;
  margin: 0 auto 1rem;
  width: auto;
  text-align: center;
}

.filtered-img {
  width: 25%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%) brightness(120%);
}

/* ----------------------------- Cheat Sections ----------------------------- */
.cheat-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.cheat-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0ff;
    border-bottom: 1px solid #0ff;
    padding-bottom: 0.5rem;
}

.cheat-section h3 {
    font-size: 1.5rem;
    margin: 1.2rem 0 0.5rem;
    color: #0ff;
}

.cheat-section p {
    margin-bottom: 1rem;
    color: #ccc;
}

.cheat-section ul {
    list-style: none;
    padding-left: 0;
}

.cheat-section ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.5;
}

.cheat-section code {
    background-color: #222;
    padding: 2px 5px;
    border-radius: 4px;
    color: #0ff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
}

/* ----------------------------- Inline CSS Examples ----------------------------- */
.cheat-section div[style] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: normal;
    min-height: 40px;
    padding: 5px;
    margin: 10px 0;
    flex-direction: column;
}

.cheat-section p[style],
.cheat-section a[style] {
    display: block;
    text-align: center;
    margin: 10px 0;
    line-height: 1.4;
}

.cheat-section img[style] {
    display: block;
    margin: 10px auto;
    border-radius: 6px;
}

.cheat-section div[onmouseover] {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cheat-section div[style*="display:flex"],
.cheat-section div[style*="display:grid"] {
    margin-bottom: 1rem;
}

/* ----------------------------- Links ----------------------------- */
.cheat-section a {
    text-decoration: none;
    font-weight: bold;
    color: #0ff;
    transition: color 0.3s ease;
}

.cheat-section a:hover {
    color: #ff0;
}

/* ----------------------------- Terminal / Code Blocks ----------------------------- */
.terminal {
    background: #000;
    color: #cfe8ff;
    padding: 1rem;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
    font-size: 0.95rem;
    line-height: 1.45;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 0.75rem;
}

.terminal code {
    white-space: pre;
    display: block;
    background: transparent;
    padding: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

/* ----------------------------- Animations ----------------------------- */
@keyframes rotateScale {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.2); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px #0ff; transform: scale(1); }
    50% { box-shadow: 0 0 20px #0ff; transform: scale(1.1); }
    100% { box-shadow: 0 0 5px #0ff; transform: scale(1); }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .filtered-img {
        width: 45%;
    }

    .cheat-section h2 {
        font-size: 1.5rem;
    }

    .cheat-section h3 {
        font-size: 1.2rem;
    }

    .terminal {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 1200px;     /* fully fixed width */
        max-width: 1200px; /* ensures no resizing */
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .cheat-section h2 {
        font-size: 1.3rem;
    }

    .cheat-section h3 {
        font-size: 1rem;
    }

    .cheat-section p,
    .cheat-section ul li {
        font-size: 0.9rem;
    }

    .filtered-img {
        width: 60%;
    }

    .container {
        padding: 0.8rem;
    }

    .terminal {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}
