/* Font Declarations */
@font-face {
    font-family: 'Minecraft';
    src: url('assets/Minecraft.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-dark: #08090c;
    --bg-card: rgba(18, 20, 28, 0.75);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(46, 204, 64, 0.3);
    
    --mc-green: #2ecc40;
    --mc-green-hover: #3deb51;
    --mc-green-glow: rgba(46, 204, 64, 0.35);
    
    --red-hardcore: #ef4444;
    --red-glow: rgba(239, 68, 68, 0.35);
    
    --purple-light: #c084fc;
    --purple-accent: #a855f7;
    --purple-bg: #140d21;
    
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-dim: #646a78;
    
    --font-pixel: 'Minecraft', 'Silkscreen', 'Press Start 2P', monospace;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Vertical Grid Columns (Reference UI) */
.bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.grid-col {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.035);
}

.grid-col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.035);
}

/* Containers */
.container-standard,
.hero-inner,
.friends-container,
.nav-container,
.footer-inner,
.ip-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Header & Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 9, 12, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    height: 76px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pixel-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.brand-pixel-title {
    font-family: var(--font-pixel);
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 26px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.18s ease;
}

.nav-link:hover {
    color: #fff;
}

.red-link {
    color: #f87171 !important;
}

.red-link:hover {
    color: #ef4444 !important;
}

/* Buttons */
.btn-mc-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--mc-green);
    color: #031405;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(46, 204, 64, 0.25);
}

.btn-mc-green:hover {
    background: var(--mc-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--mc-green-glow);
}

.btn-mc-green:active {
    transform: translateY(0);
}

.btn-mc-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-mc-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-hero-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

/* Hero Section */
.hero-odyssey {
    padding: 60px 0 70px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.hardcore-alert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    letter-spacing: 1px;
    margin-bottom: 22px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.pixel-hero-heading {
    font-family: var(--font-pixel);
    font-size: 3.5rem;
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 500px;
    margin-bottom: 34px;
}

.hero-subtext strong {
    color: #ffffff;
}

.cta-wrapper {
    margin-bottom: 36px;
}

.dotted-annotation {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.dotted-curve {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: -1px;
}

.ip-code {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mc-green);
    background: rgba(46, 204, 64, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(46, 204, 64, 0.3);
}

.hero-meta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.meta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: underline;
    font-size: 0.96rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.meta-link:hover {
    opacity: 0.8;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 10px #a855f7;
    animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Character Hero Stage */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-stage {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.hero-render-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 35px rgba(239, 68, 68, 0.45));
}

/* Hardcore Mode Banner Section */
.section-hardcore-banner {
    padding: 30px 0 60px;
}

.hardcore-card {
    background: linear-gradient(135deg, rgba(42, 10, 16, 0.9) 0%, rgba(18, 10, 15, 0.95) 100%);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.15);
    flex-wrap: wrap;
}

.hardcore-skull-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(239, 68, 68, 0.18);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.3);
}

.hardcore-content {
    flex: 1;
    min-width: 280px;
}

.hardcore-tag {
    font-family: var(--font-pixel);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: #f87171;
    display: block;
    margin-bottom: 8px;
}

.hardcore-title {
    font-family: var(--font-pixel);
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hardcore-desc {
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hardcore-desc strong {
    color: #fff;
}

.hardcore-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.h-stat {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.h-stat i {
    color: #ef4444;
}

/* Allies Section */
.section-friends {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #08090c 0%, var(--purple-bg) 50%, #08090c 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.friends-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px;
}

.pixel-sub-badge {
    font-family: var(--font-pixel);
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: var(--purple-accent);
    display: inline-block;
    margin-bottom: 12px;
}

.pixel-sub-badge.green { color: var(--mc-green); }
.pixel-sub-badge.purple { color: var(--purple-accent); }

.pixel-purple-heading {
    font-family: var(--font-pixel);
    font-size: 2.7rem;
    line-height: 1.2;
    color: var(--purple-light);
    letter-spacing: -0.5px;
}

.friends-desc-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.characters-row-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.characters-image-box {
    position: relative;
    width: 100%;
    max-width: 1100px;
}

.friends-row-img {
    width: 100%;
    max-width: 960px;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9));
}

/* Direct IP Banner */
.section-ip-banner {
    padding: 36px 0;
    background: #0d0f14;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ip-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.ip-banner-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ip-banner-label {
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

.ip-banner-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.5rem;
    font-family: monospace;
    font-weight: 700;
}

.ip-banner-code-box i {
    color: var(--mc-green);
}

.btn-copy-direct {
    padding: 12px 28px;
}

/* Downloads Section */
.section-mods {
    padding: 90px 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.pixel-section-heading {
    font-family: var(--font-pixel);
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 14px;
}

.section-lead-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-lead-text strong {
    color: #fff;
}

/* Download Options Grid */
.download-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 60px;
}

.download-pack-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.download-pack-card:hover {
    transform: translateY(-4px);
}

.download-pack-card.low-pc-pack {
    background: linear-gradient(145deg, rgba(14, 23, 20, 0.85) 0%, rgba(18, 20, 29, 0.95) 100%);
    border: 1px solid rgba(46, 204, 64, 0.35);
}

.download-pack-card.high-pc-pack {
    background: linear-gradient(145deg, rgba(28, 14, 42, 0.85) 0%, rgba(18, 20, 29, 0.95) 100%);
    border: 1px solid rgba(168, 85, 247, 0.45);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.15);
}

.pack-badge {
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pack-badge.low { color: var(--mc-green); }
.pack-badge.high { color: var(--purple-light); }
.pack-badge.mini { color: var(--purple-light); }

.download-pack-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.download-pack-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.pack-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.p-feat {
    font-size: 0.88rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-feat strong {
    color: #fff;
}

.text-green { color: var(--mc-green); }
.text-purple { color: var(--purple-light); }

.btn-pack-action {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
}

/* Modrinth Official Trust & Transparency Card */
.modrinth-trust-card {
    background: linear-gradient(180deg, rgba(16, 22, 28, 0.95) 0%, rgba(12, 15, 20, 0.98) 100%);
    border: 1px solid rgba(27, 217, 106, 0.35);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(27, 217, 106, 0.08);
    margin-top: 10px;
    margin-bottom: 10px;
}

.modrinth-header {
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 22px;
}

.modrinth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 217, 106, 0.12);
    border: 1px solid rgba(27, 217, 106, 0.3);
    color: #1bd96a;
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.modrinth-icon-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.modrinth-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.modrinth-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 880px;
}

.modrinth-subtitle strong {
    color: #fff;
}

.modrinth-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 24px;
}

.modrinth-method-card {
    background: rgba(8, 10, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.method-badge {
    font-family: var(--font-pixel);
    font-size: 0.68rem;
    color: #1bd96a;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modrinth-method-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.modrinth-method-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    background: rgba(0, 0, 0, 0.35);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.m-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(27, 217, 106, 0.2);
    color: #1bd96a;
    font-weight: 700;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-modrinth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1bd96a;
    color: #06120b;
    font-family: var(--font-pixel);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(27, 217, 106, 0.3);
    text-align: center;
    margin-top: auto;
}

.btn-modrinth:hover {
    background: #25e575;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(27, 217, 106, 0.5);
    color: #000;
}

.modrinth-categories-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mod-cat-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mod-cat-title {
    font-family: var(--font-pixel);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mod-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mod-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.15s ease;
}

.mod-chip i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.mod-chip:hover {
    background: rgba(27, 217, 106, 0.15);
    border-color: rgba(27, 217, 106, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

.mod-chip:hover i {
    opacity: 1;
    color: #1bd96a;
}

.mod-chip.highlight {
    background: rgba(27, 217, 106, 0.1);
    border-color: rgba(27, 217, 106, 0.35);
    color: #4ade80;
    font-weight: 600;
}

.mod-chip.purple-chip:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
}

.mod-chip.purple-chip:hover i {
    color: #c084fc;
}

/* Resource Packs Section */
.section-resourcepacks {
    padding: 90px 0;
    background: #090b10;
    border-top: 1px solid var(--border-subtle);
}

.rp-download-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(18, 20, 28, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rp-banner-text h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.rp-banner-text p {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.btn-rp-download {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.rp-order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.rp-order-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.order-icon {
    font-size: 2rem;
    color: var(--purple-light);
}

.rp-order-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.rp-order-header p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.rp-order-header strong {
    color: #fff;
}

.rp-list-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rp-stack-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: background 0.18s, border-color 0.18s;
}

.rp-stack-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.rp-stack-item.top-priority {
    border-color: rgba(46, 204, 64, 0.45);
    background: rgba(46, 204, 64, 0.07);
}

.rp-stack-item.base-priority {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.rp-rank {
    font-family: var(--font-pixel);
    font-size: 0.88rem;
    color: var(--text-dim);
    width: 28px;
}

.rp-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}

.rp-item-content strong {
    font-size: 0.96rem;
    color: #fff;
}

.rp-tag {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* Rules Section (Anarchy Hardcore PvP) */
.section-rules {
    padding: 90px 0;
    background: #08090c;
    border-top: 1px solid var(--border-subtle);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.rule-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-box.rule-allowed {
    border-color: rgba(46, 204, 64, 0.25);
}

.rule-box.rule-banned {
    border-color: rgba(239, 68, 68, 0.35);
}

.rule-status-tag {
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.rule-status-tag.allowed {
    background: rgba(46, 204, 64, 0.12);
    color: var(--mc-green);
    border: 1px solid rgba(46, 204, 64, 0.3);
}

.rule-status-tag.banned {
    background: rgba(239, 68, 68, 0.14);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.rule-box h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.rule-box p {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.rule-box p strong {
    color: #fff;
}

/* Security Section */
.section-security {
    padding: 80px 0 100px;
}

.security-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(18, 20, 29, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.security-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.security-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 8px 0;
    color: #fff;
}

.security-text p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-subtle);
    background: #050608;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-top: 6px;
}

.footer-left p strong {
    color: var(--mc-green);
}

.footer-right p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f1410;
    color: #fff;
    border: 1px solid var(--mc-green);
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px var(--mc-green-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--mc-green);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtext {
        margin: 0 auto 34px;
    }
    .dotted-annotation {
        justify-content: center;
    }
    .hero-meta-row {
        justify-content: center;
    }
    .character-stage {
        margin: 0 auto;
    }
    .friends-header-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .download-options-grid {
        grid-template-columns: 1fr;
    }
    .modrinth-methods-grid {
        grid-template-columns: 1fr;
    }
    .pixel-hero-heading {
        font-size: 2.8rem;
    }
    .pixel-purple-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .pixel-hero-heading {
        font-size: 2.2rem;
    }
    .pixel-purple-heading {
        font-size: 1.8rem;
    }
    .ip-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hardcore-card {
        padding: 24px;
    }
    .hardcore-title {
        font-size: 1.5rem;
    }
}
