/* --- PLAYSU HUB - PORADNIKI PREMIUM PURPLE --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;700&display=swap');

:root {
    --accent-purple: #a855f7;        /* Jasny, neonowy fiolet */
    --accent-glow: rgba(168, 85, 247, 0.4);
    --bg-darker: #050507;            /* Głęboka czerń tła */
    --bg-card: rgba(22, 22, 26, 0.8); /* Półprzezroczyste kafelki */
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --font-header: 'Rajdhani', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. TŁO I STRUKTURA */
body.guide-page {
    background: radial-gradient(circle at 20% 20%, #1a1625 0%, var(--bg-darker) 60%);
    background-attachment: fixed;
    margin: 0;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    display: flex;
    overflow-x: hidden;
}

/* 2. SIDEBAR (BEZ ZMIAN KOLORYSTYCZNYCH Z GŁÓWNEJ, TYLKO AKCENTY) */
.sidebar {
    background-color: rgba(10, 10, 12, 0.98) !important;
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(168, 85, 247, 0.15) !important;
}

.sidebar .logo span {
    color: var(--accent-purple);
    text-shadow: 0 0 15px var(--accent-glow);
}

.nav-menu a:hover, .nav-menu a.active {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
    color: var(--accent-purple);
    border-left: 3px solid var(--accent-purple);
}

.nav-menu .sep {
    font-size: 11px;
    color: #444;
    margin: 20px 0 10px 10px;
    letter-spacing: 2px;
}

/* 3. CONTENT LAYOUT */
.content {
    margin-left: 260px;
    padding: 50px;
    width: calc(100% - 260px);
}

/* HERO SECTION */
.hero.purple-gradient {
    padding: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-left: 6px solid var(--accent-purple);
    margin-bottom: 50px;
}

.hero h1 {
    font-family: var(--font-header);
    font-size: 54px;
    text-transform: uppercase;
    margin: 0;
}

/* 4. GRID KAFELKÓW */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.guide-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.guide-img {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: var(--transition);
}

.guide-overlay {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple);
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
}

.guide-card h3 {
    font-family: var(--font-header);
    font-size: 24px;
    margin: 0;
}

.guide-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

.guide-footer {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-purple);
    font-family: var(--font-header);
}

/* HOVER EFFECTS */
.guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-glow);
}

.guide-card:hover .guide-img {
    filter: brightness(1);
    transform: scale(1.05);
}

/* 5. STOPKA (IDENTYCZNA JAK NA GŁÓWNEJ) */
footer {
    margin-top: 80px;
    padding-bottom: 40px;
    text-align: center;
}

.rgb-footer-bar {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    background-size: 200% 100%;
    margin-bottom: 25px;
    opacity: 0.8;
}

footer p {
    font-family: var(--font-header);
    color: var(--text-dim);
    letter-spacing: 1px;
    font-size: 14px;
}

footer p a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

footer p a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--accent-purple);
}