﻿/*
* CheatingPsychology Knowledge Base
* 32-Law Compliant HUD Aesthetics
* v2026.1
*/

:root {
    /* Redefining original variables to Premium HUD Dark Theme */
    --bg-color: #050505;
    --ink: #f3f4f6;
    --muted: #9ca3af;
    --neon-cyan: #00f0ff;
    /* Shifted to pure Diplomatic HUD Cyan */
    --neon-pink: #ef4444;
    /* Shifted from pink to Neon Red */
    --panel-bg: rgba(17, 17, 17, 0.9);
    --border-glow: rgba(0, 240, 255, 0.4);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(5, 5, 5, 0.90), rgba(5, 5, 5, 0.95)), url('/hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--ink);
    line-height: 1.7;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

.wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    position: relative;
}

.hero {
    background: var(--panel-bg);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--neon-cyan);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

h1,
h2,
h3 {
    margin: 0 0 20px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h1 {
    background: linear-gradient(135deg, #ffffff, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.2));
    text-transform: uppercase;
}

p {
    margin: 0 0 20px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.meta {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.article {
    background: var(--panel-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 35px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.article:hover {
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px 0 rgba(0, 243, 255, 0.15);
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.tier {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.tier:hover::before {
    transform: translateX(100%);
}

.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px var(--border-glow);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.tier1 {
    border-top: 2px solid #3b82f6;
}

.tier2 {
    border-top: 2px solid #00f0ff;
}

.tier3 {
    border-top: 2px solid #8b5cf6;
}

.tier4 {
    border-top: 2px solid var(--neon-pink);
}

.adsense-block {
    margin-top: 100px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 20px;
    color: var(--muted);
    text-align: center;
    min-height: 90px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.nav {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.5);
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    justify-content: center;
}

.nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

footer {
    margin-top: 60px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

footer p {
    font-size: 0.9rem;
}

footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 12px;
    font-weight: 500;
}

footer a:hover {
    color: var(--neon-pink);
}

/* Strip inline ins.adsbygoogle */
ins.adsbygoogle {
    display: block;
    margin: 20px 0;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}
