/* King of Crush — main site layout */

:root {
    --stone-dark: #1a1510;
    --stone-mid: #2d261c;
    --stone-light: #4a4032;
    --gold: #e8b923;
    --gold-bright: #ffd54f;
    --crush-red: #a31d16;
    --crush-red-glow: #cb2b2d;
    --champion: #e67e22;
    --magic-purple: #8e44ad;
}

.new-page {
    background: var(--stone-dark);
    color: #f5f0e6;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.new-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(163, 29, 22, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(232, 185, 35, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.new-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
    transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.new-nav.scrolled {
    background: rgba(26, 21, 16, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(232, 185, 35, 0.15);
}

.new-nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.new-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.new-logo-shield {
    width: 44px;
    height: 52px;
    background: linear-gradient(145deg, var(--gold-bright), var(--gold), #b8860b);
    clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.4);
}

.new-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

.new-logo-tagline {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

@media (max-width: 640px) {
    .new-logo-img { height: 34px; }
    .new-logo-tagline { display: none; }
}

.new-logo-shield img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.new-logo-text {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.new-logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    font-weight: 600;
}

.new-nav-links {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .new-nav-links { display: flex; }
}

.new-nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.new-nav-links a:hover { color: var(--gold-bright); }

.new-nav-cta {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(180deg, var(--crush-red-glow), var(--crush-red));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 0 #570408, 0 6px 20px rgba(163, 29, 22, 0.5);
    transition: transform 0.15s, box-shadow 0.15s;
}

.new-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #570408, 0 10px 30px rgba(163, 29, 22, 0.6);
}

.new-nav-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #570408;
}

.new-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.new-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 45%, rgba(163, 29, 22, 0.12) 0%, transparent 65%),
        linear-gradient(to bottom, rgba(26, 21, 16, 0.35) 0%, rgba(26, 21, 16, 0.7) 100%),
        var(--stone-dark);
}

.new-hero-logo-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    pointer-events: none;
    z-index: 1;
}

.new-hero-logo-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 10, 0.42);
    pointer-events: none;
}

.new-hero-logo {
    width: min(96vw, 860px);
    height: auto;
    object-fit: contain;
    opacity: 0.88;
    filter: brightness(0.72) blur(3px) drop-shadow(0 0 40px rgba(163, 29, 22, 0.2));
    animation: new-hero-logo-float 10s ease-in-out infinite alternate;
}

.new-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    width: 100%;
    margin-top: 10px;
}

@keyframes new-hero-logo-float {
    from { transform: scale(1) translateY(0); }
    to { transform: scale(1.04) translateY(-12px); }
}

@keyframes new-hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.new-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(232, 185, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 185, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

#new-embers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.new-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232, 185, 35, 0.4);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.new-hero-badge i { color: var(--champion); }

.new-hero-title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.new-hero-title .alive {
    background: linear-gradient(180deg, #fff 20%, var(--crush-red-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(203, 43, 45, 0.5));
}

.new-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(245, 240, 230, 0.75);
    max-width: 32rem;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
}

.new-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.new-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, var(--crush-red-glow), var(--crush-red));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 0 #570408, 0 8px 25px rgba(163, 29, 22, 0.45);
    transition: transform 0.15s;
}

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

.new-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(232, 185, 35, 0.35);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.new-btn-secondary:hover {
    background: rgba(232, 185, 35, 0.1);
    border-color: var(--gold);
}

.new-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 36rem;
    margin: 0 auto;
}

.new-stat-pill {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.375rem);
    padding: 0.75rem 0.5rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
    .new-stat-pill {
        flex: 0 1 7.5rem;
        max-width: none;
    }
}

.new-stat-pill.highlight {
    border-color: var(--champion);
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.2);
}

.new-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
}

.new-stat-pill.highlight .new-stat-value { color: var(--champion); }

.new-stat-label {
    font-size: 0.6rem;
    color: rgba(245, 240, 230, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

.new-section {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem;
}

.new-section-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.new-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.new-section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.new-section-title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.new-section-desc {
    color: rgba(245, 240, 230, 0.55);
    max-width: 32rem;
    margin: 0 auto;
}

.new-stone-panel {
    background: linear-gradient(145deg, var(--stone-mid), var(--stone-dark));
    border: 2px solid var(--stone-light);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.new-stone-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.new-philosophy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .new-philosophy { grid-template-columns: 1fr 1fr; }
}

.new-quote-block {
    padding: 2.5rem;
}

.new-quote-block blockquote {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
    color: rgba(245, 240, 230, 0.9);
    border-left: 4px solid var(--crush-red);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.new-quote-block p {
    color: rgba(245, 240, 230, 0.6);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.new-quote-signature {
    font-style: italic;
    color: var(--crush-red-glow);
    font-weight: 600;
}

.new-visual-panel {
    position: relative;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.new-visual-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1);
    transition: filter 0.5s;
}

.new-visual-panel:hover img {
    filter: saturate(1) contrast(1.05);
}

.new-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 21, 16, 0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.new-visual-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.new-league-path {
    margin-bottom: 2.5rem;
    padding: 1.5rem 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.new-league-groups {
    display: none;
}

.new-league-scroll {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--stone-mid);
}

.new-league-scroll::-webkit-scrollbar { height: 5px; }
.new-league-scroll::-webkit-scrollbar-track { background: var(--stone-mid); border-radius: 3px; }
.new-league-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.new-league-ladder {
    display: grid;
    grid-template-columns: repeat(12, 76px) 92px;
    row-gap: 1.1rem;
    width: max-content;
    min-width: 100%;
    padding: 0 0.25rem;
}

.new-league-group {
    grid-row: 1;
    font-family: var(--beta-mono, ui-monospace, monospace);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.new-league-group.crystal { grid-column: 1 / 4; color: #26c6da; border-bottom-color: rgba(38, 198, 218, 0.35); }
.new-league-group.master { grid-column: 4 / 7; color: #b0bec5; border-bottom-color: rgba(176, 190, 197, 0.35); }
.new-league-group.champion { grid-column: 7 / 10; color: var(--champion); border-bottom-color: rgba(230, 126, 34, 0.35); }
.new-league-group.titan { grid-column: 10 / 13; color: #b388ff; border-bottom-color: rgba(179, 136, 255, 0.35); }
.new-league-group.legend { grid-column: 13 / 14; color: var(--gold); border-bottom-color: rgba(240, 180, 41, 0.35); }

.new-league-track-wrap,
.new-league-track {
    display: contents;
}

.new-league-step {
    grid-row: 2;
    text-align: center;
    position: relative;
}

.new-league-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 11px;
    left: calc(50% + 12px);
    width: calc(100% - 24px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.new-league-step.done:not(:last-child)::after,
.new-league-step.current:not(:last-child)::after {
    background: var(--step-color, var(--gold));
    opacity: 0.55;
}

.new-league-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto 0.45rem;
    background: var(--stone-dark);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s;
}

.new-league-step.crystal { --step-color: #26c6da; --step-glow: rgba(38, 198, 218, 0.55); }
.new-league-step.master { --step-color: #90a4ae; --step-glow: rgba(144, 164, 174, 0.45); }
.new-league-step.champion { --step-color: var(--champion); --step-glow: rgba(230, 126, 34, 0.55); }
.new-league-step.titan { --step-color: #b388ff; --step-glow: rgba(179, 136, 255, 0.5); }
.new-league-step.legend { --step-color: var(--gold); --step-glow: rgba(240, 180, 41, 0.6); }

.new-league-step.done .new-league-dot {
    background: var(--step-color);
    border-color: var(--step-color);
    box-shadow: 0 0 10px var(--step-glow);
}

.new-league-step.current .new-league-dot {
    background: var(--step-color);
    border-color: #fff;
    box-shadow: 0 0 18px var(--step-glow);
    animation: new-league-pulse 2s ease-in-out infinite;
}

@keyframes new-league-pulse {
    0%, 100% { box-shadow: 0 0 18px var(--step-glow); }
    50% { box-shadow: 0 0 28px var(--step-glow); }
}

.new-league-step.next .new-league-dot {
    opacity: 0.3;
    border-style: dashed;
}

.new-league-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.2;
    color: rgba(245, 240, 230, 0.75);
}

.new-league-step.current .new-league-name { color: #fff; }
.new-league-step.next .new-league-name { opacity: 0.35; }

.new-league-date {
    display: block;
    font-size: 0.5rem;
    font-family: ui-monospace, monospace;
    color: rgba(245, 240, 230, 0.35);
    margin-top: 0.2rem;
}

.new-league-step.current .new-league-date { color: var(--gold); }

.new-chronicle-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--stone-mid);
}

.new-chronicle-scroll::-webkit-scrollbar { height: 6px; }
.new-chronicle-scroll::-webkit-scrollbar-track { background: var(--stone-mid); border-radius: 3px; }
.new-chronicle-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.new-chronicle-card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: border-color 0.3s, transform 0.3s;
}

.new-chronicle-card:hover {
    border-color: rgba(232, 185, 35, 0.35);
    transform: translateY(-4px);
}

.new-chronicle-card.orange { border-top: 3px solid var(--champion); }
.new-chronicle-card.red { border-top: 3px solid var(--crush-red-glow); }
.new-chronicle-card.purple { border-top: 3px solid var(--magic-purple); }

.new-chronicle-date {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 230, 0.4);
    margin-bottom: 0.5rem;
}

.new-chronicle-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.new-chronicle-text {
    font-size: 0.8rem;
    color: rgba(245, 240, 230, 0.55);
    line-height: 1.5;
}

.new-banners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .new-banners { grid-template-columns: repeat(3, 1fr); }
}

.new-banner-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.new-banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.new-banner-card.featured {
    border-color: var(--crush-red-glow);
    box-shadow: 0 0 30px rgba(163, 29, 22, 0.25);
}

.new-banner-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.new-banner-type {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.new-banner-type.main {
    background: rgba(163, 29, 22, 0.3);
    color: var(--crush-red-glow);
    border: 1px solid rgba(163, 29, 22, 0.5);
}

.new-banner-type.academy {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(245, 240, 230, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.new-banner-type.event {
    background: rgba(232, 185, 35, 0.15);
    color: var(--gold);
    border: 1px solid rgba(232, 185, 35, 0.3);
}

.new-banner-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.new-banner-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.new-banner-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.new-banner-row span:first-child { color: rgba(245, 240, 230, 0.45); }
.new-banner-row span:last-child { font-weight: 700; }

.new-banner-row .league-champ { color: var(--champion); }
.new-banner-row .league-master { color: #b0bec5; }

.new-banner-link {
    display: block;
    margin-top: 1rem;
    padding: 0.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.new-banner-card.featured .new-banner-link {
    background: linear-gradient(180deg, var(--crush-red-glow), var(--crush-red));
    border-color: transparent;
}

.new-banner-link:hover { background: rgba(232, 185, 35, 0.15); border-color: var(--gold); }
.new-banner-card.featured .new-banner-link:hover { filter: brightness(1.1); }

/* Crush Bot & ELO */
.new-bot-section {
    background: rgba(0, 0, 0, 0.18);
}

.new-bot-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .new-bot-hero {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }
}

.new-bot-hero-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(0, 136, 204, 0.25), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(0, 136, 204, 0.35);
    font-size: 2rem;
    color: #29b6f6;
    box-shadow: 0 0 30px rgba(41, 182, 246, 0.15);
}

.new-bot-hero-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.new-bot-hero-text p {
    color: rgba(245, 240, 230, 0.65);
    line-height: 1.65;
    font-size: 0.95rem;
}

.new-bot-hero-text strong {
    color: var(--gold-bright);
}

.new-bot-trackers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .new-bot-trackers { grid-template-columns: repeat(4, 1fr); }
}

.new-bot-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.7);
    transition: border-color 0.25s;
}

.new-bot-track:hover {
    border-color: rgba(41, 182, 246, 0.35);
}

.new-bot-track i {
    font-size: 1.15rem;
    color: #29b6f6;
}

.new-bot-elo-title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    text-transform: uppercase;
}

.new-elo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .new-elo-grid { grid-template-columns: repeat(3, 1fr); }
}

.new-elo-card {
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.new-elo-card.featured {
    border-color: rgba(240, 180, 41, 0.35);
    background: linear-gradient(145deg, rgba(240, 180, 41, 0.08), var(--stone-dark));
}

.new-elo-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(163, 29, 22, 0.2);
    border: 1px solid rgba(163, 29, 22, 0.35);
    font-size: 1.15rem;
    color: var(--crush-red-glow);
}

.new-elo-card.featured .new-elo-icon {
    background: rgba(240, 180, 41, 0.15);
    border-color: rgba(240, 180, 41, 0.4);
    color: var(--gold-bright);
}

.new-elo-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.new-elo-card p {
    font-size: 0.82rem;
    color: rgba(245, 240, 230, 0.58);
    line-height: 1.6;
}

.new-code-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .new-code-grid { grid-template-columns: repeat(3, 1fr); }
}

.new-code-card {
    padding: 1.5rem;
    text-align: center;
}

.new-code-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(163, 29, 22, 0.2);
    border: 2px solid rgba(163, 29, 22, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--crush-red-glow);
}

.new-code-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.new-code-card p {
    font-size: 0.8rem;
    color: rgba(245, 240, 230, 0.55);
    line-height: 1.55;
}

.new-timers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .new-timers { grid-template-columns: repeat(2, 1fr); }
}

.new-timer-box {
    padding: 1.5rem;
    text-align: center;
}

.new-timer-box i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.new-timer-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.45);
    margin-bottom: 0.25rem;
}

.new-timer-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold-bright);
    font-variant-numeric: tabular-nums;
}

.new-join-panel {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2.5rem;
}

.new-form-group { margin-bottom: 1.25rem; }

.new-form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.5);
    margin-bottom: 0.4rem;
}

.new-form-group input,
.new-form-group select,
.new-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.new-form-group input:focus,
.new-form-group select:focus,
.new-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.new-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .new-form-grid { grid-template-columns: 1fr 1fr; }
}

.new-footer {
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.new-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.new-footer-links a {
    color: rgba(245, 240, 230, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.new-footer-links a:hover { color: var(--gold); }

.new-footer-copy {
    font-size: 0.7rem;
    color: rgba(245, 240, 230, 0.3);
    letter-spacing: 0.05em;
}

.new-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 1rem;
    background: rgba(232, 185, 35, 0.12);
    border: 1px solid rgba(232, 185, 35, 0.3);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.new-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.35);
    animation: new-bounce 2s ease-in-out infinite;
}

@keyframes new-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
