* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1E343B;
    color: white;
    min-height: 100vh;
}

body a {
    color: white;
    text-decoration: underline;
    transition: 0.2s;
}

body a:hover {
    opacity: 0.7;
}

/* =========================
   HEADER
========================= */

header {
    background: #162126;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.logo {
    font-family: "Bungee", cursive;
    font-size: 2rem;
    letter-spacing: 2px;

    color: white;
    text-decoration: none;

    display: inline-block;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: white;
    text-decoration: none;

    font-family: "Luckiest Guy", cursive;
    font-size: 1.1rem;

    transition: 0.2s;
}

nav a:hover {
    opacity: 0.75;
}

#devBtn {
    background: #2B4750;
    color: white;

    border: none;

    padding: 12px 22px;
    border-radius: 10px;

    cursor: pointer;

    font-family: "Luckiest Guy", cursive;
    font-size: 1rem;

    transition: 0.2s;
}

#devBtn:hover {
    background: #355965;
    transform: translateY(-2px);
}

footer {
    background: #162126;
    margin-top: 100px;
    border-top: 2px solid rgba(255,255,255,0.08);

    position: relative;
}

.dev-portal-btn {
    position: absolute;

    right: 30px;
    bottom: 20px;

    background: #2B4750;
    color: white;

    border: none;

    padding: 12px 22px;
    border-radius: 10px;

    cursor: pointer;

    font-family: "Luckiest Guy", cursive;
    font-size: 1rem;

    transition: 0.2s;
}

.dev-portal-btn:hover {
    background: #355965;
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.home-title {
    font-family: "Bowlby One SC", cursive;
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: 8px;
}

.hero {
    text-align: center;

    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    font-family: "Bowlby One SC", cursive;
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: 8px;
    margin-bottom: 15px;
}

h2 {
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 2px;
    font-size: 2rem;

    margin-bottom: 25px;
}

h3,
h4,
h5,
h6 {
    font-family: "Luckiest Guy", cursive;
}

p {
    font-family: "Schoolbell", cursive;

    font-size: 1.5rem;

    max-width: 700px;

    margin: auto;

    line-height: 1.7;
}

.play-btn {
    margin-top: 40px;

    background: white;
    color: #162126;

    border: none;

    padding: 18px 40px;

    border-radius: 12px;

    cursor: pointer;

    font-family: "Luckiest Guy", cursive;
    font-size: 1.3rem;

    transition: 0.2s;
}

.play-btn:hover {
    transform: scale(1.05);
}

.page-title {
    font-family: "Bowlby One SC", cursive;

    font-size: clamp(2.5rem, 6vw, 4rem);

    letter-spacing: 6px;

    margin-bottom: 10px;
}

footer {
    background: #162126;
    margin-top: 100px;
    border-top: 2px solid rgba(255,255,255,0.08);
}

.footer-content {
    max-width: 1200px;
    margin: auto;

    padding: 50px 30px;

    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;

    position: relative;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: "Schoolbell", cursive;
    color: white;
    text-decoration: none;
}

.footer-brand p,
.footer-links a,
.footer-contact a {
    font-family: "Schoolbell", cursive;
    color: white;
    text-decoration: none;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 0.75;
}

.footer-bottom {
    text-align: center;
    padding: 18px;

    border-top: 1px solid rgba(255,255,255,0.08);

    font-family: "Schoolbell", cursive;
    color: rgba(255,255,255,0.75);
}

/* =========================
   BLOG PAGE
========================= */

.blog-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-post {
    background: #162126;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;

    padding: 25px;

    transition: 0.2s;
}

.blog-post:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
}

.blog-post h2 {
    font-family: "Luckiest Guy", cursive;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-date {
    font-family: "Schoolbell", cursive;
    font-size: 0.9rem;
    opacity: 0.7;

    display: block;
    margin-bottom: 12px;
}

.blog-post p {
    font-family: "Schoolbell", cursive;
    font-size: 1.2rem;
    line-height: 1.6;

    max-width: 100%;
    margin: 0;
}

/* =========================
   DISCORD BUTTON
========================= */

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #2B4750;
    border-radius: 10px;

    transition: 0.2s;
}

.discord-btn:hover {
    background: #355965;
    transform: translateY(-2px);
}

.discord-btn img {
    width: 22px;
    height: 22px;

    filter: invert(1);
}

/* =========================
   HEADER LAYOUT (3 ZONES)
========================= */

header {
    background: #162126;
    height: 80px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    border-bottom: 2px solid rgba(255,255,255,0.08);
}

/* LEFT */
.header-left {
    display: flex;
    align-items: center;
}

/* CENTER (TRUE CENTER) */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 32px;
}

/* RIGHT */
.header-right {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 12px;
}

.home-divider {
    width: calc(100% - 120px);

    max-width: 1400px;

    height: 2px;

    background: rgba(255,255,255,0.08);

    margin: 80px auto;
}

.coming-soon-btn {
    position: relative;
    overflow: visible;
}

/* short, solid diagonal ribbon */
.coming-soon-btn .tape {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 120%; /* shorter than before */

    transform: translate(-50%, -50%) rotate(-22deg);

    background: #FFD700; /* fully solid yellow */

    color: #162126;

    font-family: "Luckiest Guy", cursive;
    font-size: 0.75rem;
    letter-spacing: 2px;

    padding: 4px 0;

    text-align: center;

    pointer-events: none;

    box-shadow: 0 6px 12px rgba(0,0,0,0.25);

    z-index: 2;
}
