/* ==========================================================================
   PERFECT WORLD - MODERN WHITE & GOLD LANDING PAGE THEME
   Crisp, Sharp, Solid Typography & Responsive Luxury UI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --pw-gold-primary: #d97706;
    --pw-gold-light: #fbbf24;
    --pw-gold-dark: #b45309;
    --pw-gold-darker: #78350f;
    --pw-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    --pw-gold-gradient-hover: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #92400e 100%);
    --pw-gold-border: rgba(217, 119, 6, 0.35);

    --pw-bg-white: #ffffff;
    --pw-bg-offwhite: #f8fafc;
    --pw-bg-dark: #0b1324;
    --pw-bg-card: #ffffff;

    --pw-text-main: #1e293b;
    --pw-text-heading: #0f172a;
    --pw-text-muted: #64748b;
    --pw-text-light: #94a3b8;
    --pw-text-gold: #b45309;

    --pw-font-serif: 'Cinzel', Georgia, serif;
    --pw-font-sans: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --pw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --pw-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --pw-shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.08);

    --pw-radius-sm: 8px;
    --pw-radius-md: 14px;
    --pw-radius-lg: 20px;
    --pw-radius-pill: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.pw-landing-body {
    background-color: var(--pw-bg-white);
    color: var(--pw-text-main);
    font-family: var(--pw-font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Container */
.pw-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

/* ==========================================
   TOP NAVIGATION BAR
   ========================================== */
.pw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    background: rgba(11, 19, 36, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.pw-header.is-scrolled {
    height: 64px;
    background: rgba(7, 13, 26, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.5);
}

.pw-nav-container {
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Brand */
.pw-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pw-brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
}

.pw-brand-name {
    font-family: var(--pw-font-serif);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--pw-gold-dark) !important;
    letter-spacing: 0.5px;
}

/* Nav Menu */
.pw-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.pw-nav-item {
    position: relative;
}

.pw-nav-link {
    color: #e2e8f0;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pw-nav-link:hover,
.pw-nav-link.active {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Dropdowns in Nav */
.pw-nav-dropdown {
    position: relative;
}

.pw-nav-dropdown .pw-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    background: #0f172a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--pw-radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.pw-nav-dropdown:hover .pw-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pw-dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.pw-dropdown-link:hover {
    background: rgba(212, 175, 55, 0.18);
    color: var(--pw-gold-light);
    padding-left: 20px;
}

/* Nav Right & Auth */
.pw-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pw-btn-gold-pill {
    background: var(--pw-gold-gradient);
    color: #1a1500;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: var(--pw-radius-pill);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.pw-btn-gold-pill:hover {
    background: var(--pw-gold-gradient-hover);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
    color: #000;
}

.pw-btn-streamer-pill {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--pw-gold-primary);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: var(--pw-radius-pill);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.pw-btn-streamer-pill:hover {
    background: var(--pw-gold-gradient);
    border-color: transparent;
    color: #1a1500;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
}

.pw-stream-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: pwStreamPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pwStreamPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.75;
        box-shadow: 0 0 4px #ef4444;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 12px #ef4444, 0 0 20px rgba(239, 68, 68, 0.6);
    }
}

.pw-user-dropdown {
    position: relative;
}

.pw-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--pw-radius-pill);
    cursor: pointer;
}

.pw-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--pw-gold-primary);
    object-fit: cover;
}

.pw-user-dropdown .pw-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: #0f172a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--pw-radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.pw-user-dropdown:hover .pw-dropdown-menu,
.pw-user-dropdown:focus-within .pw-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pw-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.pw-dropdown-link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--pw-gold-light);
    padding-left: 22px;
}

.pw-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

/* Mobile Toggle */
.pw-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
}

.pw-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pw-gold-light);
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.pw-mobile-drawer {
    position: fixed;
    inset: 0;
    background: rgba(11, 19, 36, 0.98);
    backdrop-filter: blur(16px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pw-mobile-drawer.active {
    opacity: 1;
    visibility: visible;
}

.pw-mobile-drawer-link {
    font-family: var(--pw-font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    padding: 6px 16px;
}

.pw-mobile-drawer-link:hover {
    color: var(--pw-gold-light);
}

/* ==========================================
   FLOATING SOCIAL RAIL
   ========================================== */
.pw-social-rail {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
}

.pw-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.pw-social-btn:hover {
    background: var(--pw-gold-gradient);
    color: #1a1500;
    border-color: var(--pw-gold-light);
    transform: scale(1.1) translateX(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.pw-social-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--pw-gold-primary);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.2s ease;
}

.pw-social-btn:hover .pw-social-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.pw-hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url('/img/landing/hero_sky_bg.webp') center top / cover no-repeat;
    padding-top: 100px;
    overflow: hidden;
}

.pw-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center 25%, rgba(255, 255, 255, 0.15) 0%, rgba(10, 35, 75, 0.2) 60%, rgba(5, 15, 35, 0.55) 100%);
    pointer-events: none;
}

.pw-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pw-hero-cleric-wrap {
    position: relative;
    width: 290px;
    height: 350px;
    margin-bottom: -15px;
    animation: pwFloat 6s ease-in-out infinite;
}

.pw-hero-cleric-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 40px rgba(120, 200, 255, 0.4));
    mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
}

.pw-hero-cleric-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 235, 255, 0.6) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    filter: blur(25px);
    z-index: -1;
}

.pw-hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e2f1ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
}

.pw-hero-title {
    font-family: var(--pw-font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 20, 60, 0.6);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.pw-hero-title span {
    color: #f7df94;
}

.pw-btn-fantasy-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 16px 44px;
    font-family: var(--pw-font-serif);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1200;
    background: var(--pw-gold-gradient);
    border: none;
    clip-path: polygon(14px 0%, calc(100% - 14px) 0%, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0% 50%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pw-btn-fantasy-main:hover {
    background: var(--pw-gold-gradient-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
    color: #000000;
}

.pw-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    animation: pwBounce 2.5s infinite;
}

.pw-scroll-pill {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.pw-scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--pw-gold-primary);
    border-radius: 4px;
    animation: pwScrollDot 1.8s infinite;
}

.pw-divider-brush {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 20;
    overflow: hidden;
}

.pw-divider-brush-top {
    margin-bottom: -2px;
}

.pw-divider-brush-bottom {
    margin-top: -2px;
    transform: rotate(180deg);
}

.pw-divider-brush svg {
    display: block;
    width: 100%;
    height: 85px;
    fill: var(--pw-bg-white);
}

/* ==========================================
   SECTION 1: WHY SHOULD WE PLAY
   ========================================== */
.pw-section-why {
    background-color: var(--pw-bg-white);
    padding: 70px 0 90px;
    position: relative;
}

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

.pw-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pw-gold-dark);
    margin-bottom: 12px;
}

.pw-section-badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--pw-gold-primary);
    color: var(--pw-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.pw-section-title {
    font-family: var(--pw-font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--pw-text-heading);
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.pw-section-title-gold {
    color: var(--pw-gold-dark);
}

.pw-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pw-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pw-radius-md);
    box-shadow: var(--pw-shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pw-accordion-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.12);
}

.pw-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    cursor: pointer;
    user-select: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pw-text-heading);
    transition: all 0.2s ease;
}

.pw-accordion-item.active .pw-accordion-header {
    background: rgba(212, 175, 55, 0.07);
    color: var(--pw-gold-dark);
}

.pw-accordion-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pw-accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.pw-accordion-item.active .pw-accordion-icon {
    background: var(--pw-gold-gradient);
    color: #1a1200;
}

.pw-accordion-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.pw-accordion-item.active .pw-accordion-arrow {
    transform: rotate(180deg);
    color: var(--pw-gold-dark);
}

.pw-accordion-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
    padding: 0 22px;
    color: var(--pw-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.pw-accordion-item.active .pw-accordion-body {
    max-height: 250px;
    opacity: 1;
    padding: 14px 22px 20px;
}

.pw-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pw-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pw-why-warrior-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pw-why-warrior-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.pw-why-warrior-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* ==========================================
   SECTION 2: FARM SYSTEM & FEATURES
   ========================================== */
.pw-section-features {
    background-color: var(--pw-bg-offwhite);
    padding: 80px 0 100px;
    position: relative;
}

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

.pw-features-desc {
    color: var(--pw-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pw-features-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pw-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: var(--pw-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pw-text-main);
    box-shadow: var(--pw-shadow-sm);
}

.pw-feature-pill-icon {
    color: var(--pw-gold-primary);
    font-size: 1.1rem;
}

.pw-banner-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pw-crystal-card {
    position: relative;
    height: 340px;
    border-radius: 20px 20px 10px 10px;
    overflow: hidden;
    box-shadow: var(--pw-shadow-md);
    border: 2px solid transparent;
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 18px 12px;
}

.pw-crystal-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pw-crystal-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(10, 18, 35, 0.92) 100%);
}

.pw-crystal-card-content {
    position: relative;
    z-index: 5;
}

.pw-crystal-card-title {
    font-family: var(--pw-font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.pw-crystal-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pw-gold-light);
    letter-spacing: 1px;
}

.pw-crystal-card:hover {
    transform: translateY(-8px);
    border-color: var(--pw-gold-primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

.pw-crystal-card:hover .pw-crystal-card-img {
    transform: scale(1.08);
}

/* ==========================================
   SECTION 3: MONTHLY TOP-UP LEADERBOARD
   ========================================== */
.pw-section-leaderboard {
    background-color: var(--pw-bg-white);
    padding: 80px 0 90px;
    position: relative;
}

.pw-leaderboard-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.pw-leaderboard-month-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--pw-gold-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--pw-radius-pill);
    margin-top: 10px;
}

.pw-leaderboard-card {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pw-radius-lg);
    box-shadow: var(--pw-shadow-md);
    overflow: hidden;
}

.pw-leaderboard-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.pw-leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.pw-leaderboard-table th {
    background: #f8fafc;
    color: var(--pw-text-heading);
    font-family: var(--pw-font-serif);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.pw-leaderboard-tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.pw-leaderboard-tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.pw-leaderboard-tr td {
    padding: 14px 20px;
    vertical-align: middle;
}

/* Rank Badges */
.pw-badge-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-family: var(--pw-font-serif);
    font-weight: 800;
    font-size: 0.95rem;
}

.pw-badge-rank.rank-1 {
    background: var(--pw-gold-gradient);
    color: #1a1200;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pw-badge-rank.rank-2 {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 50%, #94a3b8 100%);
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pw-badge-rank.rank-3 {
    background: linear-gradient(135deg, #fed7aa 0%, #fb923c 50%, #c2410c 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(251, 146, 60, 0.3);
}

.pw-badge-rank.rank-other {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.85rem;
}

.pw-leaderboard-user-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pw-leaderboard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pw-gold-primary);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.pw-leaderboard-name {
    font-family: var(--pw-font-serif);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--pw-text-heading);
}

.pw-leaderboard-sub {
    font-size: 0.78rem;
    color: var(--pw-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pw-leaderboard-coins {
    font-family: var(--pw-font-serif);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--pw-gold-dark);
}

/* Empty State Card */
.pw-leaderboard-empty {
    padding: 50px 30px;
    text-align: center;
}

.pw-leaderboard-empty-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--pw-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.pw-leaderboard-empty-title {
    font-family: var(--pw-font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pw-text-heading);
    margin-bottom: 8px;
}

.pw-leaderboard-empty-text {
    color: var(--pw-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================
   SECTION 4: SERVER STATUS (BOUTIQUE 3D BOXES STYLE)
   ========================================== */
.pw-section-shop {
    background-color: var(--pw-bg-offwhite);
    padding: 80px 0 90px;
    position: relative;
}

.pw-shop-header-wrap {
    text-align: center;
    margin-bottom: 48px;
}

.pw-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.pw-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pw-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 24px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    position: relative;
    min-height: 290px;
}

.pw-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.18);
}

.pw-item-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.pw-item-card:hover .pw-item-badge {
    background: var(--pw-gold-primary);
    color: #1a1200;
}

.pw-item-title {
    font-family: var(--pw-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pw-text-heading);
    margin-bottom: 14px;
}

.pw-item-img-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pw-item-img-glow {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 75%);
    filter: blur(14px);
    z-index: 1;
}

.pw-item-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.pw-item-card:hover .pw-item-img {
    transform: scale(1.08);
}

.pw-item-price-btn {
    width: 100%;
    background: var(--pw-gold-gradient);
    color: #1a1200;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 16px;
    border-radius: var(--pw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.25s ease;
    border: none;
}

.pw-shop-notices {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pw-radius-md);
    padding: 20px 28px;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--pw-shadow-sm);
}

.pw-notice-item {
    font-size: 0.88rem;
    color: var(--pw-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pw-notice-item::before {
    content: '•';
    color: var(--pw-gold-primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* ==========================================
   SECTION 5: FULL-WIDTH LATEST NEWS & ARTICLES
   ========================================== */
.pw-section-news {
    background: var(--pw-bg-white);
    padding: 80px 0 100px;
    position: relative;
}

.pw-news-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.pw-news-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.pw-news-card-wide {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pw-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pw-news-card-wide:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.15);
}

.pw-news-card-thumb-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pw-news-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pw-news-card-wide:hover .pw-news-card-thumb {
    transform: scale(1.05);
}

.pw-news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.pw-news-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pw-news-cat-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--pw-gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pw-news-date-text {
    color: var(--pw-text-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pw-news-card-title {
    font-family: var(--pw-font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pw-text-heading);
    margin-bottom: 10px;
    line-height: 1.35;
}

.pw-news-card-desc {
    color: var(--pw-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pw-news-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.85rem;
}

.pw-news-read-more {
    font-weight: 700;
    color: var(--pw-gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.pw-news-card-wide:hover .pw-news-read-more {
    gap: 10px;
    color: var(--pw-gold-darker);
}

/* ==========================================
   FOOTER & BOTTOM CTA
   ========================================== */
.pw-footer-section {
    position: relative;
    background: url('/img/landing/footer_sky_bg.webp') center center / cover no-repeat;
    color: #ffffff;
    padding: 80px 0 50px;
    overflow: hidden;
}

.pw-footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.75) 0%, rgba(6, 12, 28, 0.92) 100%);
    pointer-events: none;
}

.pw-footer-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pw-footer-cta-box {
    margin-bottom: 60px;
    max-width: 700px;
}

.pw-footer-cta-title {
    font-family: var(--pw-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.pw-footer-cta-subtitle {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.pw-footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.pw-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin-bottom: 30px;
}

.pw-footer-link {
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pw-footer-link:hover {
    color: var(--pw-gold-light);
}

.pw-footer-legal {
    max-width: 750px;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

/* ==========================================
   AUTH MODAL
   ========================================== */
.pw-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pw-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.pw-modal-box {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--pw-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.pw-modal-backdrop.active .pw-modal-box {
    transform: scale(1) translateY(0);
}

.pw-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    z-index: 10;
}

.pw-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.pw-modal-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 28px;
    text-align: center;
}

.pw-modal-title {
    font-family: var(--pw-font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pw-text-heading);
}

.pw-modal-body {
    padding: 24px 28px;
}

.pw-form-group {
    margin-bottom: 16px;
}

.pw-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pw-text-main);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pw-form-input {
    width: 100%;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--pw-radius-sm);
    font-size: 0.92rem;
    color: var(--pw-text-main);
    outline: none;
    transition: all 0.2s ease;
}

.pw-form-input:focus {
    border-color: var(--pw-gold-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes pwFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pwBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes pwScrollDot {
    0% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; transform: translateY(0); }
}

@keyframes pwPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1100px) {
    .pw-nav-menu {
        display: none;
    }

    .pw-mobile-toggle {
        display: flex;
    }

    .pw-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pw-why-grid,
    .pw-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pw-why-warrior-wrap {
        order: -1;
    }

    .pw-banner-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pw-social-rail {
        display: none;
    }

    .pw-news-grid-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pw-hero-cleric-wrap {
        width: 240px;
        height: 290px;
        margin-bottom: -15px;
    }

    .pw-shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pw-banner-cards-row {
        grid-template-columns: 1fr;
    }
}
