
.pn-hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 0 10%; }
#pn-hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.6; }
.pn-hero-content { position: relative; z-index: 1; max-width: 600px; }
.pn-hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.pn-hero-content p { font-size: 1.2rem; margin-bottom: 2.5rem; color: #d1d5db; line-height: 1.6; }

.pn-section { padding: 6rem 0; }
.pn-section-title { text-align: center; font-size: 2.5rem; color: var(--primary-accent); margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 3px; }

/* Daily Shell Rewards */
.pn-rewards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.pn-shell-card { background: var(--surface-color); border: 1px solid var(--border-color); padding: 1.5rem 1rem; text-align: center; border-radius: 8px; transition: 0.3s; }
.pn-shell-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.1); border-color: var(--primary-accent); }
.pn-shell-icon { font-size: 2.5rem; color: var(--secondary-accent); margin-bottom: 1rem; }
.pn-shell-day { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.5rem; }
.pn-shell-val { color: var(--primary-accent); font-weight: bold; }

/* Preview Deck */
.pn-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; }
.pn-game-card { position: relative; background: #000; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.3s; }
.pn-game-card img { width: 100%; height: 250px; object-fit: cover; opacity: 0.8; transition: 0.5s; }
.pn-game-card:hover img { opacity: 1; transform: scale(1.05); }
.pn-game-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: 0.3s; }
.pn-game-card:hover .pn-game-overlay { opacity: 1; }
.pn-game-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1rem; color: #fff; }

/* Testimonials */
.pn-reviews { display: flex; gap: 2rem; overflow-x: auto; padding-bottom: 2rem; snap-type: x mandatory; }
.pn-review-card { min-width: 300px; background: var(--surface-color); padding: 2rem; border-left: 4px solid var(--secondary-accent); snap-align: start; }
.pn-review-text { font-style: italic; color: #d1d5db; margin-bottom: 1rem; line-height: 1.6; }
.pn-review-author { font-family: var(--font-heading); color: var(--primary-accent); }
