```css
body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
    padding: 40px;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: -50px;

    z-index: 0;

    background-image: url("./images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    pointer-events: none;
    will-change: transform;
}

.hero,
.about,
.socials,
.rules {
    position: relative;
    z-index: 1;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
    padding: 40px;

    text-align: left;
}

.logo {
    width: 400px;
    height: 400px;

    object-fit: cover;
    border-radius: 50px;
    flex-shrink: 0;

    transition: transform 0.25s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.hero > div {
    align-self: flex-start;
    margin-top: 150px;
}

.hero h1 {
    font-size: 56px;
    margin: 0 0 8px 0;
}

.hero p {
    font-size: 36px;
    margin: 0;
}

/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.scroll-button {
    display: inline-block;
    padding: 14px 25px;

    background: white;
    color: black;

    text-decoration: none;
    border-radius: 12px;

    font-size: 18px;
    font-weight: bold;

    transition: transform 0.2s ease;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    background: #5865F2;
    color: white;

    text-decoration: none;
    border-radius: 12px;

    font-size: 18px;
    font-weight: bold;

    transition: transform 0.2s ease;
}

.discord-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.scroll-button:hover,
.discord-button:hover {
    transform: translateY(-3px);
}

/* =========================
   ABOUT SECTION
========================= */

.about {
    min-height: 70vh;
    padding: 100px 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 70px;
}

/* Left side */

.about-text {
    width: 400px;
    flex-shrink: 0;

    text-align: left;
}

.about-text h2 {
    font-size: 52px;
    margin: 0 0 20px 0;
}

.about-intro {
    font-size: 20px;
    line-height: 1.6;

    margin: 0;
}

/* =========================
   GAME CAROUSEL
========================= */

.game-carousel {
    display: flex;
    align-items: center;

    gap: 20px;
}

.game-window {
    width: 500px;

    overflow: hidden;
    border-radius: 22px;
}

.game-track {
    display: flex;

    transition: transform 0.5s ease;
}

.feature-card {
    min-width: 500px;
    box-sizing: border-box;

    padding: 35px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 22px;

    backdrop-filter: blur(10px);

    text-align: left;
}

.feature-card h3 {
    font-size: 30px;
    margin: 0 0 15px 0;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.6;

    margin: 0;
}

/* =========================
   CAROUSEL ARROWS
========================= */

.game-arrow {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    color: white;

    font-size: 35px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.game-arrow:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}
```
.about-text,
.about-text h2,
.about-text p {
    color: white;
    font-family: Arial, sans-serif;
}

.about-text h2 {
    font-size: 52px;
    font-weight: bold;
}

.about-text p {
    font-size: 20px;
}
/* FORCE ABOUT TEXT STYLING */

section.about h2 {
    color: white !important;
    font-family: Arial, sans-serif !important;
    font-size: 52px !important;
    font-weight: bold !important;
    text-align: left !important;
}

section.about p.about-intro {
    color: white !important;
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}
body,
body h1,
body h2,
body h3,
body p {
    color: white;
    font-family: Arial, sans-serif;
}
.hero h1 {
    color: white !important;
    font-family: Arial, sans-serif !important;
}

.hero p {
    color: white !important;
    font-family: Arial, sans-serif !important;
}

.feature-card h3 {
    color: white !important;
    font-family: Arial, sans-serif !important;
}

.feature-card p {
    color: white !important;
    font-family: Arial, sans-serif !important;
}
.server-status {
    margin-top: 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    max-width: 520px;

    box-sizing: border-box;
    padding: 20px 25px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: white;
    font-family: Arial, sans-serif;
}

.status-dot {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #35d07f;

    box-shadow: 0 0 12px rgba(53, 208, 127, 0.7);
}

.status-title {
    font-size: 22px;
    font-weight: bold;
}

.server-address {
    margin-top: 5px;

    font-size: 15px;
    opacity: 0.65;
}
/* =========================
   SOCIALS
========================= */

.socials {
    min-height: 70vh;
    padding: 100px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.socials h2 {
    color: white;
    font-family: Arial, sans-serif;

    font-size: 52px;
    margin: 0 0 15px;
}

.socials-intro {
    color: white;
    font-family: Arial, sans-serif;

    font-size: 20px;
    margin: 0 0 50px;

    opacity: 0.8;
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 25px;

    width: 100%;
    max-width: 1100px;
}

.social-card {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 30px;

    color: white;
    text-decoration: none;
    text-align: left;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 25px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.social-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.14);
}

.social-card img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    flex-shrink: 0;
}

.social-card h3 {
    color: white;

    font-size: 25px;

    margin: 0 0 7px;
}

.social-card p {
    color: white;

    font-size: 16px;
    line-height: 1.4;

    margin: 0;

    opacity: 0.7;
}
.social-card.youtube img,
.social-card.tiktok img {
    border-radius: 15px;
}
/* =========================
   SERVER IP COPY BUTTON
========================= */

.server-address-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-button {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);
    color: white;

    font-size: 16px;
    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.copy-button:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.16);
}

.copy-button.copied {
    background: rgba(53, 208, 127, 0.25);
}
/* =========================
   RULES
========================= */

.rules {
    min-height: 100vh;
    padding: 100px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
}

.rules h2 {
    font-size: 52px;
    margin: 0 0 15px;
}

.rules-intro {
    font-size: 20px;
    opacity: 0.8;
    margin: 0 0 60px;
}

.rules-section {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 60px;
}

.rules-section > h3 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 25px;
}

.rule-card {
    margin-bottom: 15px;
    padding: 25px 30px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    text-align: left;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.rule-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.rule-card h4 {
    color: white;
    font-size: 21px;
    margin: 0 0 8px;
}

.rule-card p {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.75;
}

.rules-ping {
    padding: 12px 20px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    font-family: monospace;
    font-size: 16px;

    opacity: 0.7;
}
.copy-button {
    width: 42px;
    height: 42px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.1);

    cursor: pointer;

    transition: transform 0.2s ease, background 0.2s ease;
}

.copy-button img {
    width: 39px;
    height: 39px;
    object-fit: contain;
    display: block;
}

.copy-button:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.18);
}
.copy-button.copied {
    background: rgba(53, 208, 127, 0.35);
}

.copy-button.copied:hover {
    background: rgba(53, 208, 127, 0.45);
}
@media (max-width: 1100px) {

    body {
        padding: 20px;
    }

    .hero {
        gap: 30px;
    }

    .logo {
        width: 320px;
        height: 320px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 28px;
    }

    .about {
        gap: 35px;
    }

    .about-text {
        width: 320px;
    }

    .about-text h2 {
        font-size: 42px;
    }

    .game-window,
    .feature-card {
        width: 420px;
        min-width: 420px;
    }

    .social-cards {
        max-width: 900px;
    }
}


@media (max-width: 800px) {

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero > div {
        align-self: center;
        margin-top: 30px;
    }

    .logo {
        width: 280px;
        height: 280px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 24px;
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .server-status {
        margin-left: auto;
        margin-right: auto;
    }

    .about {
        flex-direction: column;
        padding: 80px 20px;
    }

    .about-text {
        width: 100%;
        max-width: 600px;
        text-align: center;
        padding: 0;
    }

    .about-text h2 {
        font-size: 42px;
        text-align: center;
    }

    .about-intro {
        text-align: center;
    }

    .game-carousel {
        max-width: 100%;
    }

    .game-window,
    .feature-card {
        width: min(500px, 70vw);
        min-width: min(500px, 70vw);
    }

    .social-cards {
        flex-direction: column;
        max-width: 600px;
    }
}


@media (max-width: 500px) {

    body {
        padding: 10px;
    }

    .logo {
        width: 220px;
        height: 220px;
        border-radius: 35px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 20px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .scroll-button,
    .discord-button {
        width: 200px;
        justify-content: center;
        box-sizing: border-box;
    }

    .server-status {
        width: 100%;
    }

    .about-text h2,
    .socials h2 {
        font-size: 34px;
    }

    .game-carousel {
        gap: 8px;
    }

    .game-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .game-window,
    .feature-card {
        width: calc(100vw - 120px);
        min-width: calc(100vw - 120px);
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card h3 {
        font-size: 25px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .socials {
        padding: 80px 15px;
    }

    .social-card {
        padding: 22px;
    }
}
/* =========================
   GLOBAL UI SCALING
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero,
.about,
.socials,
.rules {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Keep the overall proportions consistent */
.hero {
    min-height: 100vh;
    padding: clamp(30px, 5vw, 80px);
}

.logo {
    width: clamp(220px, 28vw, 400px);
    height: clamp(220px, 28vw, 400px);
}

.hero h1 {
    font-size: clamp(32px, 4vw, 56px);
}

.hero p {
    font-size: clamp(20px, 2.5vw, 36px);
}

.about {
    min-height: 100vh;
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
}

.about-text {
    width: clamp(280px, 30vw, 400px);
}

.about-text h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.about-intro {
    font-size: clamp(17px, 1.5vw, 20px);
}

.game-window,
.feature-card {
    width: clamp(320px, 35vw, 500px);
}

.feature-card {
    min-width: clamp(320px, 35vw, 500px);
}

.feature-card h3 {
    font-size: clamp(24px, 2.3vw, 30px);
}

.feature-card p {
    font-size: clamp(16px, 1.4vw, 18px);
}

.socials {
    min-height: 100vh;
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
}

.socials h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.socials-intro {
    font-size: clamp(17px, 1.5vw, 20px);
}

.social-card {
    padding: clamp(20px, 2.5vw, 30px);
}

.social-card h3 {
    font-size: clamp(21px, 2vw, 25px);
}

.social-card p {
    font-size: clamp(14px, 1.3vw, 16px);
}
/* =========================
   SCROLLBAR
========================= */

html {
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}