/* =========================================================
   WARRIOR CRAFT — STYLE.CSS
   Base visual system / desktop / components
   Compatible with the supplied index.html
========================================================= */

/* ========================= RESET ========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

:root {
    --bg: #02050e;
    --bg-deep: #030711;
    --bg-surface: #07101d;
    --bg-panel: rgba(10, 18, 32, 0.94);
    --surface: rgba(255, 255, 255, 0.035);
    --surface-strong: rgba(255, 255, 255, 0.055);

    --text: #eef3ff;
    --text-soft: #c7d1df;
    --text-muted: #93a6bd;
    --text-dim: #66768d;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --orange: #ff8a00;
    --orange-light: #ffad42;
    --purple: #9a5cff;
    --purple-light: #b37cff;

    --accent: #ff8a00;
    --accent-2: #9a5cff;
    --accent-soft: rgba(255, 138, 0, 0.16);
    --accent-muted: rgba(154, 92, 255, 0.14);

    --green: #35d47d;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --container: 1180px;
    --nav-height: 72px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 138, 0, 0.075), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(154, 92, 255, 0.09), transparent 23%),
        linear-gradient(180deg, var(--bg) 0%, #070b13 52%, var(--bg-deep) 100%);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(255, 138, 0, 0.22);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

/* ========================= GLOBAL EFFECTS ========================= */
.section {
    position: relative;
    padding: 110px 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,0.012), transparent);
    opacity: 0.55;
}

.section-header {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.section h2 {
    margin-top: 10px;
    color: var(--text);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.section-header p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.section-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 42px;
}

.section-top h2 {
    margin-top: 9px;
}

.view-all,
.feature-link,
.card-button {
    color: var(--accent-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 180ms ease, transform 180ms ease;
}

.view-all:hover,
.feature-link:hover,
.card-button:hover {
    color: var(--orange-light);
    transform: translateX(3px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(255, 138, 0, 0.24);
    outline-offset: 4px;
}

/* ========================= NAVBAR ========================= */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--nav-height);
    background: rgba(2, 7, 15, 0.68);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.navbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,138,0,0.28), rgba(154,92,255,0.28), transparent);
    opacity: 0.65;
}

.navbar.navbar-scrolled {
    background: rgba(3, 8, 17, 0.93);
    box-shadow: 0 16px 50px rgba(0,0,0,0.28);
}

.nav-container {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar .logo img {
    width: auto;
    height: 68px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,0.28));
    transition: transform 220ms ease, filter 220ms ease;
}

.logo:hover img {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 10px 28px rgba(255,138,0,0.10));
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: color 200ms ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 200ms ease, transform 200ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.discord-button,
.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, border-color 200ms ease;
}

.discord-button {
    color: #07111c;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    box-shadow: 0 12px 30px rgba(255,138,0,0.16);
}

.login-button {
    color: var(--text);
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.11);
}

.discord-button:hover,
.login-button:hover {
    transform: translateY(-2px);
}

.discord-button:hover {
    box-shadow: 0 17px 38px rgba(255,138,0,0.22);
    filter: brightness(1.04);
}

.login-button:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.055);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

/* ========================= HERO ========================= */
.hero {
    position: relative;
    min-height: max(760px, 100vh);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding: 115px 0 100px;
    background:
        linear-gradient(180deg, rgba(2,5,14,0.18), rgba(2,5,14,0.16)),
        url("../images/hero.png") center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 45%, transparent 0 20%, rgba(2,5,14,0.16) 62%, rgba(2,5,14,0.78) 100%),
        linear-gradient(180deg, rgba(2,5,14,0.10) 0%, rgba(2,5,14,0.05) 42%, rgba(2,5,14,0.92) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -220px;
    width: 720px;
    height: 360px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,0,0.12), transparent 68%);
    filter: blur(14px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(2,5,14,0.46), transparent 30%, transparent 70%, rgba(2,5,14,0.34)),
        linear-gradient(180deg, rgba(2,5,14,0.08), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 900px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,138,0,0.22);
    border-radius: 999px;
    background: rgba(110,30,175,0.46);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: heroBadgeIn 700ms cubic-bezier(.2,.9,.3,1) both;
}

.hero h1 {
    max-width: 820px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -3.5px;
    text-shadow: 0 18px 55px rgba(0,0,0,0.35);
    animation: heroTitleIn 760ms 80ms cubic-bezier(.2,.9,.3,1) both;
}

.hero h1 span {
    display: block;
    color: var(--orange);
    text-shadow: 0 0 45px rgba(255,138,0,0.12);
}

.hero-description {
    max-width: 680px;
    margin: 24px auto 0;
    color: rgba(224,232,244,0.78);
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45);
    animation: fadeUp 700ms 180ms cubic-bezier(.2,.9,.3,1) both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    animation: fadeUp 700ms 260ms cubic-bezier(.2,.9,.3,1) both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, border-color 200ms ease, background 200ms ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #07111c;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    box-shadow: 0 17px 42px rgba(255,138,0,0.18);
}

.btn-primary:hover {
    box-shadow: 0 22px 48px rgba(255,138,0,0.25);
    filter: brightness(1.04);
}

.btn-secondary {
    color: var(--text);
    background: linear-gradient(135deg, rgba(154,92,255,0.85), rgba(154,92,255,0.18));
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 15px 38px rgba(0,0,0,0.18);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.2);
    filter: brightness(1.07);
}

.btn-discord {
    color: var(--purple);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.hero-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    max-width: 900px;
    margin: 28px auto 0;
    animation: fadeUp 700ms 330ms cubic-bezier(.2,.9,.3,1) both;
}

.hero-card {
    min-width: 0;
    padding: 16px 17px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 17px;
    background: rgba(5,12,22,0.46);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,138,0,0.2);
    background: rgba(9,18,31,0.58);
}

.hero-card span {
    display: block;
    color: #91a0b4;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card strong {
    display: block;
    overflow: hidden;
    margin-top: 7px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.server-status {
    position: absolute;
    right: 4%;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    background: rgba(3,10,18,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.22);
    animation: fadeUp 700ms 430ms cubic-bezier(.2,.9,.3,1) both;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(53,212,125,0.08), 0 0 15px rgba(53,212,125,0.65);
}

.server-status strong {
    display: block;
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
}

.server-status span {
    display: block;
    margin-top: 3px;
    color: #718095;
    font-size: 9px;
}

/* ========================= INTRO ========================= */
.intro-section {
    padding-top: 95px;
    padding-bottom: 75px;
    background: #050a12;
}

.intro-section .section-header {
    margin-bottom: 0;
}

.intro-section h2 span {
    color: var(--orange);
}

/* ========================= SERVER ========================= */
.server-section {
    background:
        radial-gradient(circle at 12% 40%, rgba(255,138,0,0.035), transparent 25%),
        #050b12;
}

.server-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 18px;
}

.game-card,
.feature-card,
.news-card,
.product-card {
    box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.game-card {
    position: relative;
    overflow: hidden;
    grid-row: span 2;
    min-height: 590px;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: var(--radius-lg);
    background: #091522;
    transition: transform 280ms cubic-bezier(.2,.9,.3,1), box-shadow 280ms ease, border-color 280ms ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,138,0,0.16);
    box-shadow: 0 34px 90px rgba(0,0,0,0.42);
}

.game-image {
    position: relative;
    min-height: 290px;
    background-position: center;
    background-size: cover;
}

.survival-image {
    background-image:
        linear-gradient(180deg, rgba(3,8,14,0.02), rgba(4,10,17,0.9)),
        url("../images/survival.png");
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(4,10,17,0.12) 50%, rgba(4,10,17,0.95) 100%);
}

.game-status {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 6px 10px;
    border: 1px solid rgba(53,212,125,0.15);
    border-radius: 999px;
    background: rgba(20,190,105,0.14);
    color: #40d78d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 27px 29px 30px;
}

.game-version {
    color: var(--purple-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.game-content h3 {
    margin: 7px 0 8px;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    letter-spacing: -1.4px;
}

.game-content p {
    max-width: 680px;
    color: #8998aa;
    font-size: 13px;
    line-height: 1.75;
}

.game-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    margin: 19px 0 22px;
    list-style: none;
    color: #c3ceda;
    font-size: 11px;
}

.game-content li::first-letter {
    color: var(--orange);
}

.feature-card {
    padding: 27px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(12,23,37,0.95), rgba(7,15,25,0.98));
    transition: transform 260ms cubic-bezier(.2,.9,.3,1), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(154,92,255,0.18);
    background: linear-gradient(150deg, rgba(15,26,42,0.98), rgba(8,16,27,0.98));
    box-shadow: 0 30px 75px rgba(0,0,0,0.32);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(154,92,255,0.11));
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.feature-card h3 {
    color: var(--text);
    font-size: 17px;
}

.feature-card p {
    margin-top: 9px;
    color: #7f8c9d;
    font-size: 12px;
    line-height: 1.75;
}

.feature-link {
    display: inline-flex;
    margin-top: 17px;
}

/* ========================= HOW TO PLAY ========================= */
.how-section {
    background:
        radial-gradient(circle at 85% 30%, rgba(154,92,255,0.045), transparent 25%),
        #07111c;
}

.steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step {
    position: relative;
    min-height: 195px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(10,23,36,0.96), rgba(6,14,24,0.98));
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.step::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,0,0.08), transparent 70%);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(255,138,0,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

.step-number {
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin-top: 19px;
    color: var(--text);
    font-size: 13px;
}

.step p {
    position: relative;
    z-index: 1;
    margin-top: 9px;
    color: #7f8c9d;
    font-size: 11px;
    line-height: 1.75;
}

.ip-box {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    padding: 10px 11px;
    overflow-wrap: anywhere;
    border: 1px solid rgba(255,138,0,0.08);
    border-radius: 9px;
    background: rgba(2,8,14,0.62);
    color: var(--orange-light);
    font-size: 10px;
}

/* ========================= NEWS ========================= */
.news-section {
    background: #050a12;
}

.news-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.065);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(10,21,33,0.98), rgba(6,13,22,0.98));
    transition: transform 260ms cubic-bezier(.2,.9,.3,1), box-shadow 260ms ease, border-color 260ms ease;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,138,0,0.14);
    box-shadow: 0 30px 75px rgba(0,0,0,0.38);
}

.news-image {
    position: relative;
    height: 190px;
    background:
        radial-gradient(circle at 75% 25%, rgba(255,138,0,0.18), transparent 25%),
        linear-gradient(135deg, rgba(5,7,11,0.35), rgba(10,14,20,0.95));
}

.news-image::after {
    content: "WARRIOR CRAFT";
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: rgba(255,255,255,0.08);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.news-image-2 {
    background:
        radial-gradient(circle at 28% 25%, rgba(154,92,255,0.24), transparent 27%),
        linear-gradient(135deg, rgba(25,10,48,0.3), rgba(5,7,11,0.94));
}

.news-image-3 {
    background:
        radial-gradient(circle at 70% 30%, rgba(255,138,0,0.17), transparent 25%),
        linear-gradient(135deg, rgba(32,16,5,0.28), rgba(5,7,11,0.94));
}

.news-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.news-content {
    padding: 23px;
}

.news-content small {
    color: #68788d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.news-content h3 {
    margin-top: 8px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
}

.news-content p {
    margin: 9px 0 18px;
    color: #7f8c9d;
    font-size: 12px;
    line-height: 1.75;
}

.news-content .news-read {
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    font-size: 10px;
}

/* ========================= SHOP ========================= */
.shop-section {
    background: #07111c;
}

.shop-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    padding: 55px;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 30%, rgba(154,92,255,0.14), transparent 24%),
        radial-gradient(circle at 68% 80%, rgba(255,138,0,0.11), transparent 26%),
        linear-gradient(135deg, rgba(8,13,22,0.96), rgba(12,17,28,0.94));
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.shop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,138,0,0.04), transparent 40%, rgba(154,92,255,0.04));
}

.shop-banner > div:first-child {
    position: relative;
    z-index: 1;
}

.shop-banner h2 {
    margin-top: 9px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -2px;
}

.shop-banner p {
    max-width: 570px;
    margin: 17px 0 25px;
    color: #a7b7c8;
    font-size: 13px;
    line-height: 1.75;
}

.shop-decoration {
    position: relative;
    z-index: 1;
    color: rgba(255,138,0,0.08);
    font-size: 170px;
    line-height: 1;
    user-select: none;
    animation: decorationFloat 5s ease-in-out infinite;
}

/* ========================= TEAM ========================= */
.team-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 8%, rgba(255,138,0,0.055), transparent 24%),
        radial-gradient(circle at 85% 22%, rgba(154,92,255,0.065), transparent 26%),
        linear-gradient(180deg, rgba(5,10,18,0.98), rgba(3,7,13,1));
}

.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.025), transparent);
    pointer-events: none;
}

.team-section::after {
    content: "";
    position: absolute;
    right: -220px;
    top: 260px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154,92,255,0.055), transparent 68%);
    pointer-events: none;
}

.team-section > .container {
    position: relative;
    z-index: 1;
}

.team-section > .container > .section-top {
    margin-bottom: 30px;
}

.team-intro {
    position: relative;
    display: block;
    max-width: 760px;
    margin: 0 0 42px;
    padding: 28px 30px 28px 34px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
    box-shadow: 0 25px 70px rgba(0,0,0,0.22);
}

.team-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, var(--orange), var(--purple));
}

.team-intro p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.team-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.team-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(14,24,38,0.98), rgba(7,14,24,0.98));
    box-shadow: 0 24px 70px rgba(0,0,0,0.2);
    transition: transform 280ms cubic-bezier(.2,.9,.3,1), border-color 280ms ease, box-shadow 280ms ease;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    opacity: 0.85;
}

.team-card::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,0,0.08), transparent 70%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255,138,0,0.19);
    box-shadow: 0 35px 90px rgba(0,0,0,0.38);
}

.team-avatar {
    position: relative;
    padding: 0;
}

.team-avatar .avatar {
    position: relative;
    width: 100%;
    height: 160px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background:
        radial-gradient(circle at center, rgba(255,138,0,0.09), transparent 42%),
        linear-gradient(135deg, rgba(154,92,255,0.08), rgba(255,138,0,0.04));
    font-size: 44px;
}

.team-avatar .avatar::before {
    content: "";
    position: absolute;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255,138,0,0.16);
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    box-shadow: 0 0 45px rgba(255,138,0,0.06);
}

.team-avatar .avatar {
    text-shadow: 0 7px 30px rgba(0,0,0,0.4);
}

.team-status {
    position: absolute;
    right: 18px;
    bottom: 15px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 4px solid #0a1624;
    border-radius: 50%;
    background: var(--green);
    color: transparent;
    box-shadow: 0 0 16px rgba(53,212,125,0.42);
    font-size: 0;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 26px 25px;
}

.team-role {
    width: fit-content;
    color: var(--accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-info h3 {
    margin-top: 8px;
    color: var(--text);
    font-size: 23px;
    line-height: 1.1;
}

.team-info p {
    margin-top: 13px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.8;
}

/* ========================= APPLICATION ========================= */
.application-section {
    background: #07111c;
}

.application-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    padding: 50px 55px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 25%, rgba(154,92,255,0.15), transparent 25%),
        linear-gradient(135deg, rgba(255,138,0,0.09), rgba(57,7,73,0.66));
    box-shadow: 0 30px 90px rgba(0,0,0,0.25);
}

.application-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange), var(--purple));
}

.application-box > div {
    position: relative;
    z-index: 1;
}

.application-box h2 {
    max-width: 650px;
    margin-top: 9px;
    color: #fff;
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.application-box p {
    max-width: 650px;
    margin-top: 11px;
    color: #8291a2;
    font-size: 13px;
    line-height: 1.75;
}

.application-box > .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ========================= DISCORD ========================= */
.discord-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        radial-gradient(circle at 18% 50%, rgba(154,92,255,0.10), transparent 25%),
        linear-gradient(135deg, rgba(139,92,246,0.10), rgba(11,8,20,0.96));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.discord-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.discord-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    font-size: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.discord-content > div {
    flex: 1;
}

.discord-content h2 {
    margin-top: 6px;
    color: #fff;
    font-size: 23px;
    line-height: 1.1;
}

.discord-content p {
    max-width: 720px;
    margin-top: 7px;
    color: rgba(255,255,255,0.68);
    font-size: 12px;
    line-height: 1.7;
}

/* ========================= FOOTER ========================= */
.footer {
    padding: 80px 0 28px;
    background: linear-gradient(180deg, rgba(3,9,18,0.98), rgba(2,5,12,1));
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
}

.footer-brand p {
    max-width: 400px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-logo {
    width: 120px;
    height: 82px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.28));
}

.footer-server-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #77869b;
    font-size: 10px;
    font-weight: 800;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 9px;
    color: var(--text);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: var(--text-muted);
    font-size: 12px;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
    color: var(--orange-light);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #61718c;
    font-size: 10px;
}

/* ========================= MODAL ========================= */
.news-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 1;
    visibility: visible;
}

.news-modal[hidden] {
    display: none !important;
}

.news-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,5,10,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: min(760px, 90vh);
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18,19,28,0.98), rgba(8,10,16,0.99));
    box-shadow: 0 30px 100px rgba(0,0,0,0.65), 0 0 80px rgba(132,63,255,0.08);
    animation: newsModalIn 280ms cubic-bezier(.2,.9,.3,1) forwards;
}

.news-modal-dialog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--orange), #ff9d22, var(--purple));
}

.news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.news-modal-close:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.news-modal-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    padding-right: 50px;
}

.news-modal-category {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), #9650ff);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.news-modal-date {
    color: #7d8798;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-modal-dialog h2 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -2px;
}

.news-modal-line {
    width: 65px;
    height: 3px;
    margin: 26px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
}

.news-modal-content {
    color: #aab3c2;
    font-size: 15px;
    line-height: 1.8;
}

.news-modal-content p {
    margin: 0 0 18px;
}

.news-modal-content strong {
    color: #fff;
}

.news-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.news-modal-footer > span {
    color: #596476;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* ========================= GENERIC FOR OTHER PAGES ========================= */
.card,
.profile-card,
.server-panel,
.server-feature,
.auth-card,
.auth-info,
.product-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 24px;
    margin-top: 30px;
}

.profile-card {
    padding: 28px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(154,92,255,0.16), rgba(255,138,0,0.12));
    font-size: 40px;
}

.profile-details {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.profile-details span {
    color: var(--text-muted);
    font-size: 13px;
}

.profile-stats {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.profile-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

.profile-stat strong {
    color: var(--text);
    font-size: 18px;
}

.profile-stat span {
    color: var(--text-muted);
    font-size: 12px;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.auth-card {
    padding: 28px;
    background: linear-gradient(180deg, rgba(13,20,29,0.95), rgba(8,12,18,0.96));
}

.auth-info {
    padding: 34px;
}

.auth-info h3 {
    margin-top: 20px;
    color: var(--text);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.1;
}

.auth-info p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

.auth-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.auth-feature-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.auth-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
}

.auth-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label,
form label {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    outline: none;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-size: 14px;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.input:focus,
textarea:focus,
select:focus {
    border-color: rgba(255,138,0,0.45);
    box-shadow: 0 0 0 4px rgba(255,138,0,0.07);
    background: rgba(255,255,255,0.045);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.application-box form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
    width: 100%;
}

.application-box form textarea {
    grid-column: 1 / -1;
}

.application-box form .btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
}

.auth-note {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

.auth-card a {
    color: var(--orange-light);
    font-weight: 700;
}

/* ========================= ANIMATIONS ========================= */
@keyframes heroBadgeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: none; }
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

@keyframes decorationFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes newsModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========================= REDUCED MOTION ========================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
/* =========================================================
   WARRIOR CRAFT — PREMIUM HEADER
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(8, 9, 12, 0.97) 0%,
            rgba(8, 9, 12, 0.90) 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

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

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.nav-container {
    min-height: 82px;

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

    gap: 28px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    position: relative;

    z-index: 2;
}


.logo-mark {
    position: relative;

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

    width: 150px;
    height: 64px;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


.logo-mark::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -3px;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background: #d8a94e;

    box-shadow:
        0 0 12px rgba(216, 169, 78, 0.45);

    opacity: 0;

    transition:
        opacity 0.3s ease,
        width 0.3s ease;
}


.logo img {
    display: block;

    width: 100%;
    max-width: 150px;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 5px 18px rgba(0, 0, 0, 0.35));

    transition:
        filter 0.3s ease,
        transform 0.3s ease;
}


.logo:hover .logo-mark {
    transform: translateY(-2px);
}


.logo:hover .logo-mark::after {
    width: 58px;
    opacity: 1;
}


.logo:hover img {
    filter:
        drop-shadow(0 7px 22px rgba(216, 169, 78, 0.18));
}


/* =========================================================
   NAV MENU
   ========================================================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-left: auto;
    margin-right: 10px;

    height: 100%;
}


.nav-menu a {
    position: relative;

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

    min-height: 42px;

    padding: 0 13px;

    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

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


.nav-menu a::before {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 2px;

    height: 2px;

    background: ;

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.25s ease;
}


.nav-menu a:hover {
    color: #ffffff;
}


.nav-menu a:hover::before,
.nav-menu a.active::before {
    transform: scaleX(1);
}


.nav-menu a.active {
    color: #ffffff;
}


/* =========================================================
   NAV ACTIONS
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   DISCORD BUTTON
   ========================================================= */

.discord-button {
    position: relative;

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

    gap: 8px;

    min-height: 42px;

    padding: 0 15px;

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

    border-radius: 7px;

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

    color: rgba(255, 255, 255, 0.86);

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.discord-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,0.08) 50%,
            transparent 80%
        );

    transform: translateX(-120%);

    transition:
        transform 0.5s ease;
}


.discord-button:hover {
    color: #ffffff;

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

    border-color:
        rgba(255, 255, 255, 0.18);

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.22);
}


.discord-button:hover::before {
    transform: translateX(120%);
}


.discord-icon {
    width: 17px;
    height: 17px;

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


.discord-icon svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #e1b65e 0%,
            #c99638 100%
        );

    color: #15110a;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow:
        0 6px 20px rgba(201, 150, 56, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.login-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.07);

    box-shadow:
        0 10px 28px rgba(201, 150, 56, 0.28);
}


.login-arrow {
    font-size: 16px;
    line-height: 1;

    transition:
        transform 0.25s ease;
}


.login-button:hover .login-arrow {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 7px;

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

    cursor: pointer;

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

    gap: 5px;
}


.mobile-menu-button span {
    display: block;

    width: 19px;
    height: 2px;

    border-radius: 2px;

    background: #ffffff;

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


/* MENU ABERTO */

.mobile-menu-button.is-open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-button.is-open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}
/* =========================================================
   WARRIOR CRAFT — PREMIUM FOOTER
   ========================================================= */

.footer {
    position: relative;

    margin-top: 80px;

    padding: 76px 0 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(216, 169, 78, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 255, 255, 0.025),
            transparent 30%
        ),
        #08090c;

    border-top: 1px solid rgba(255,255,255,0.06);

    overflow: hidden;
}


.footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 420px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216,169,78,0.8),
            transparent
        );

    box-shadow:
        0 0 25px rgba(216,169,78,0.25);
}


.footer::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(216,169,78,0.035);

    box-shadow:
        0 0 0 60px rgba(216,169,78,0.015),
        0 0 0 120px rgba(216,169,78,0.01);

    pointer-events: none;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.7fr)
        repeat(3, minmax(130px, 1fr));

    gap: 60px;

    padding-bottom: 60px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
    max-width: 390px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 20px;

    text-decoration: none;
}


.footer-logo img {
    display: block;

    width: 155px;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 7px 20px rgba(0,0,0,0.35));

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


.footer-logo:hover img {
    transform: translateY(-2px);

    filter:
        drop-shadow(0 8px 24px rgba(216,169,78,0.15));
}


.footer-brand > p {
    max-width: 360px;

    margin: 0 0 24px;

    color:
        rgba(255,255,255,0.48);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER DISCORD LINK
   ========================================================= */

.footer-community-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;

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

    color:
        rgba(255,255,255,0.70);

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.05em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.footer-community-link:hover {
    color: #ffffff;

    border-color:
        rgba(216,169,78,0.30);

    background:
        rgba(216,169,78,0.06);

    transform: translateY(-2px);
}


.footer-community-icon {
    display: flex;

    width: 16px;
    height: 16px;
}


.footer-community-icon svg {
    width: 16px;
    height: 16px;

    fill: currentColor;
}


.footer-community-link strong {
    color: #d8a94e;

    font-size: 16px;

    font-weight: 400;

    transition:
        transform 0.25s ease;
}


.footer-community-link:hover strong {
    transform: translateX(3px);
}


/* =========================================================
   SERVER STATUS
   ========================================================= */

.footer-server-status {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,0.40);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}


.status-dot {
    position: relative;

    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #64d58a;

    box-shadow:
        0 0 0 4px rgba(100,213,138,0.08),
        0 0 12px rgba(100,213,138,0.45);
}


.status-dot::after {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    border: 1px solid rgba(100,213,138,0.25);

    animation:
        footerStatusPulse 2s infinite;
}


@keyframes footerStatusPulse {

    0% {
        opacity: 1;
        transform: scale(0.8);
    }

    70% {
        opacity: 0;
        transform: scale(1.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
    }

}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h4 {
    position: relative;

    margin: 5px 0 20px;

    color:
        rgba(255,255,255,0.90);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.footer-column h4::after {
    content: "";

    display: block;

    width: 24px;
    height: 2px;

    margin-top: 9px;

    background:
        #d8a94e;
}


.footer-column a {
    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 30px;

    color:
        rgba(255,255,255,0.45);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;

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


.footer-column a::before {
    content: "→";

    position: absolute;

    left: -16px;

    color: #d8a94e;

    opacity: 0;

    transform: translateX(-5px);

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


.footer-column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-column a:hover::before {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.08) 15%,
            rgba(255,255,255,0.08) 85%,
            transparent
        );
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,0.34);

    font-size: 10px;

    letter-spacing: 0.04em;
}


.footer-copyright {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-mark {
    display: inline-flex;

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

    width: 25px;
    height: 25px;

    border: 1px solid rgba(216,169,78,0.25);
    border-radius: 5px;

    color: #d8a94e;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.04em;
}


.footer-disclaimer {
    text-align: right;
}
/* =========================================================
   CART BUTTON — LOJA
   ========================================================= */

.cart-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 42px;
    padding: 0 15px;

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

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.025)
        );

    color: #ffffff;

    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.cart-button:hover {
    transform: translateY(-2px);

    border-color: rgba(255, 145, 55, 0.55);

    background:
        linear-gradient(
            135deg,
            rgba(255, 145, 55, 0.12),
            rgba(125, 65, 190, 0.10)
        );

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(255, 145, 55, 0.08);
}

.cart-icon {
    display: inline-flex;

    font-size: 17px;
    line-height: 1;
}

.cart-text {
    line-height: 1;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;

    padding: 0 6px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #ff8a3d,
        #8b45d6
    );

    color: #ffffff;

    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 4px 12px rgba(255, 138, 61, 0.22);
}


/* Estado quando existem produtos */

.cart-button.has-items .cart-count {
    animation: cartCountPulse 0.35s ease;
}

@keyframes cartCountPulse {
    0% {
        transform: scale(0.7);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}