/* --- GLOBAL SETTINGS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #080808;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: #000;
    border-bottom: 2px solid #00fbff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px; 
    font-weight: bold; 
    color: white; 
    letter-spacing: 1px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff8c00;
}

.orange-text { 
    color: #ff8c00; 
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5); 
}

nav ul { 
    display: flex; 
    list-style: none; 
}

nav ul li a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: bold; 
    font-size: 15px;
    transition: 0.3s;
}

nav ul li a:hover { 
    color: #00fbff; 
}

.menu-btn { 
    display: none; 
    color: white; 
    font-size: 24px; 
    cursor: pointer; 
}

#click { display: none; }

/* Mobile Menu Logic */
@media (max-width: 768px) {
    .menu-btn { display: block; }
    nav ul {
        position: fixed;
        top: 60px;
        left: -100%;
        background: #000;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        align-items: center;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        padding-top: 50px;
        border-top: 1px solid #333;
    }
    #click:checked ~ ul { left: 0; }
    nav ul li { margin: 15px 0; }
}

/* --- HERO & HEADERS --- */
header {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=2070') center/cover;
}

h1 { 
    font-size: clamp(2.2rem, 8vw, 3.8rem); 
    color: #ff8c00; 
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* --- ANIMATIONS --- */
@keyframes glowArrow {
    0%, 100% { transform: translateX(0); opacity: 1; text-shadow: 0 0 5px #00fbff; }
    50% { transform: translateX(8px); opacity: 0.6; text-shadow: 0 0 15px #00fbff; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 3s ease-in-out infinite; }

.cyan-arrow {
    color: #00fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-1px);
    animation: glowArrow 1.5s infinite;
    flex-shrink: 0;
}

/* --- GLASSMORPHISM & SECTIONS --- */
.glass-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(20px, 5vw, 35px);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff8c00;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

/* --- RULES PAGE SPECIFIC --- */
.rules-wrapper { 
    padding: 60px 5%; 
    max-width: 950px; 
    margin: auto; 
}

.rules-header { text-align: center; margin-bottom: 50px; }

.rule-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ff8c00;
    margin-bottom: 15px;
}

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

.rule-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rule-header-row h3 {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    color: #ff8c00;
    line-height: 1.2;
}

.rule-desc {
    display: block;
    font-size: 0.95rem;
    color: #bbb;
    margin-left: 32px;
    line-height: 1.5;
}

/* --- RADIO CARDS --- */
.radio-card { 
    display: block; 
    position: relative; 
    cursor: pointer; 
}

.radio-card input { position: absolute; opacity: 0; }

.card-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.radio-card input:checked + .card-content {
    background: rgba(0, 251, 255, 0.08);
    border-color: #00fbff;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 251, 255, 0.15);
}

/* --- ABOUT PAGE STYLES --- */
.about-wrapper { padding: 50px 5%; max-width: 1000px; margin: auto; }
.feature-stack { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #00fbff;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(0, 251, 255, 0.05);
    transform: translateX(5px);
}

/* --- BUTTONS & IP BOX --- */
.btn-glow {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #00fbff;
    color: #00fbff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 25px;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow:hover { 
    background: #00fbff; 
    color: #000; 
    box-shadow: 0 0 25px #00fbff; 
}

.ip-box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.ip-item strong { color: #ff8c00; font-size: 0.9rem; }
.highlight { 
    color: #00fbff; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 1.3rem; 
    display: block;
    margin-top: 5px;
}

/* --- FLOATING DISCORD TOOLBAR --- */
.contact-hover { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 2000; 
}

.contact-hover img { 
    width: 60px; 
    background: #5865F2; 
    border-radius: 50%; 
    padding: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-hover:hover img { transform: scale(1.15) rotate(10deg); }

.tooltip { 
    position: absolute; 
    bottom: 75px; 
    right: 0; 
    background: #5865F2; 
    padding: 6px 14px; 
    border-radius: 8px; 
    font-size: 13px; 
    opacity: 0; 
    transition: 0.3s; 
    pointer-events: none; 
    white-space: nowrap;
    font-weight: 600;
}

.contact-hover:hover .tooltip { opacity: 1; }

/* --- STATUS STYLES --- */
.status-indicator-big {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.online-glow {
    background: #00ff88;
    box-shadow: 0 0 25px #00ff88;
}

.offline-glow {
    background: #ff4444;
    box-shadow: 0 0 25px #ff4444;
}

.stats-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.stat-header-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-label {
    font-weight: bold;
    color: #ff8c00;
    text-transform: uppercase;
}

.stat-value {
    color: #00fbff;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
}

@media (max-width: 600px) {
    .rules-wrapper, .about-wrapper { padding: 30px 4%; }
    .stat-box { flex-direction: column; text-align: center; }
}

/* --- SHOP PAGE STYLES --- */
.shop-wrapper {
    padding: 50px 5%;
    max-width: 1000px;
    margin: auto;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* --- THE RADIO BUTTON --- */
.shop-card-label input, .kit-card-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shop-card-label, .kit-card-label {
    cursor: pointer;
    display: block;
    width: 100%;
}

/* --- RANK CARD STYLING --- */
.shop-card-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Highlight for Ranks */
.shop-card-label input:checked + .shop-card-content {
    background: rgba(0, 251, 255, 0.1);
    border-color: #00fbff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 251, 255, 0.2);
}

.card-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
}

.card-header-row h3 {
    color: #ff8c00;
    font-size: 1.4rem;
    margin: 0;
}

.price-tag {
    color: #00fbff;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
}

/* --- KIT CARD STYLING & REVEAL --- */
.kits-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kit-display-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s ease;
}

/* Highlight for Kits */
.kit-card-label input:checked + .kit-display-content {
    border-color: #00fbff;
    background: rgba(0, 251, 255, 0.05);
}

/* Image reveal logic */
.kit-reveal-image {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.3s ease;
}

.kit-reveal-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 251, 255, 0.3);
}

.kit-card-label input:checked + .kit-display-content .kit-reveal-image {
    max-height: 500px;
    margin-top: 20px;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 600px) {
    .shop-wrapper { padding: 30px 4%; }
    .card-header-row h3 { font-size: 1.2rem; }
    .price-tag { font-size: 1rem; }
}

/* --- STATUS PAGE --- */
.status-full-wrapper {
    padding: 50px 5%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.status-dashboard-card {
    padding: 40px 20px;
    margin-top: 20px;
}

.status-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.pulse-gray { background: #333; }
.online-glow { 
    background: #00ff88; 
    box-shadow: 0 0 25px #00ff88; 
    animation: orbPulse 2s infinite; 
}
.offline-glow { background: #ff4444; box-shadow: 0 0 25px #ff4444; }

@keyframes orbPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.status-main-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.status-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-large-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label-top {
    font-size: 0.75rem;
    color: #ff8c00;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-value-big {
    font-size: 1.4rem;
    color: #00fbff;
    font-family: monospace;
}

.click-hint { font-size: 0.7rem; color: #777; }

.dashboard-footer { margin-top: 40px; color: #666; font-size: 0.8rem; }

/* --- FULL PAGE STATUS DASHBOARD --- */
.status-full-wrapper {
    padding: 60px 5%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.status-dashboard-card {
    padding: 40px 20px;
    margin-top: 20px;
    border: 1px solid rgba(0, 251, 255, 0.1);
}

.status-orb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: 0.5s;
}

.pulse-gray { background: #333; }
.online-glow { 
    background: #00ff88; 
    box-shadow: 0 0 25px #00ff88; 
    animation: orbPulse 2s infinite; 
}
.offline-glow { background: #ff4444; box-shadow: 0 0 25px #ff4444; }

@keyframes orbPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Status Title */
.status-main-title {
    font-size: 1.25rem; /* Smaller as requested */
    margin-bottom: 35px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 2px;
}

.pulse-arrow {
    display: inline-block;
    animation: arrowGlow 1.5s infinite ease-in-out;
}

@keyframes arrowGlow {
    0% { transform: translateX(0); filter: drop-shadow(0 0 2px #00fbff); }
    50% { transform: translateX(5px); filter: drop-shadow(0 0 8px #00fbff); }
    100% { transform: translateX(0); filter: drop-shadow(0 0 2px #00fbff); }
}

.status-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-large-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.3s;
}

.stat-large-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00fbff;
}

.stat-label-top {
    font-size: 0.75rem;
    color: #ff8c00;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-value-big {
    font-size: 1.4rem;
    color: #00fbff;
    font-family: monospace;
}

.click-hint { font-size: 0.7rem; color: #777; }

.dashboard-footer { margin-top: 40px; color: #666; font-size: 0.8rem; }



