/* --- Reset & Basics --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    animation: pulseBackground 10s infinite alternate;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

section {
    padding: 4rem 1.5rem;
}

.section-intro {
    text-align: center;
    color: #ddd;
    max-width: 900px;
    margin: -1rem auto 2.5rem;
    font-size: 1rem;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #f5b800;
    margin-bottom: 2.5rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 0 0.5rem;
}

.stat-card {
    background: #111;
    border: 2px solid #f5b800;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(245,184,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(245,184,0,0.6), 0 0 50px rgba(245,184,0,0.3);
}

.stat-label {
    color: #ddd;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.stat-value {
    font-size: 2.2rem;
    color: #f5b800;
    margin-bottom: 0.25rem;
}

.stat-note {
    color: #bbb;
    font-size: 0.9rem;
}

.ip-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    padding: 0 0.5rem;
}

.ip-card {
    background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(255,255,255,0.04));
    border: 2px solid #f5b800;
    border-radius: 15px;
    padding: 1.25rem 1.5rem;
    min-height: 170px;
    box-shadow: 0 0 20px rgba(245,184,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ip-card h3 {
    color: #f5b800;
    letter-spacing: 0.08em;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.ip-card p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(245,184,0,0.45);
    border-color: #ffd45a;
}

.ip-note {
    text-align: center;
    color: #bbb;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* --- Animations --- */
@keyframes pulseBackground {
    0% { background-color: #0a0a0a; }
    50% { background-color: #111111; }
    100% { background-color: #0a0a0a; }
}

@keyframes glowHeader {
    0% { box-shadow: 0 0 5px #f5b800; }
    100% { box-shadow: 0 0 25px #f5b800; }
}

@keyframes glowText {
    0% { text-shadow: 0 0 5px #f5b800; }
    100% { text-shadow: 0 0 20px #f5b800, 0 0 40px #f5b800; }
}

@keyframes glowFooter {
    0% { box-shadow: 0 0 5px #f5b800; }
    100% { box-shadow: 0 0 25px #f5b800; }
}

/* --- Layout & Header --- */
header {
    background: linear-gradient(90deg, #111, #222);
    border-bottom: 2px solid #f5b800;
    animation: glowHeader 3s infinite alternate;
}

.site-header {
    padding: 1.5rem 1.25rem 3rem;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.logo {
    font-size: 1.4rem;
    color: #f5b800;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #ddd;
    padding: 0.5rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #111;
    background: #f5b800;
    border-color: #f5b800;
}

.hero {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 1rem;
    padding: 0 0.5rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    color: #f5b800;
    text-shadow: 0 0 10px #f5b800, 0 0 20px #f5b800;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
}

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 0.5rem;
    background: #f5b800;
    color: #111;
    text-transform: uppercase;
    border: 2px solid #f5b800;
}

.btn:hover {
    background: #e0a800;
    box-shadow: 0 0 15px #f5b800, 0 0 30px #f5b800 inset;
}

.btn.ghost {
    background: transparent;
    color: #f5b800;
    box-shadow: none;
}

.btn.ghost:hover {
    background: #f5b800;
    color: #111;
}

/* --- Membership Section --- */
section#membership {
    max-width: 1200px;
    margin: 0 auto;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.plan {
    background: #111;
    border: 2px solid #f5b800;
    border-radius: 15px;
    width: 320px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(245,184,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(245,184,0,0.6), 0 0 50px rgba(245,184,0,0.3);
}

.plan h3 {
    font-size: 1.8rem;
    color: #f5b800;
    text-align: center;
    margin-bottom: 1rem;
    animation: glowText 2s infinite alternate;
}

.price {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ddd;
}

.plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5b800;
    font-weight: bold;
}

/* --- Featured Media Section --- */
section#featured-media {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.media-card {
    background: #111;
    border: 2px solid #f5b800;
    border-radius: 15px;
    padding: 1.5rem;
    width: 320px;
    box-shadow: 0 0 20px rgba(245,184,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(245,184,0,0.6);
}

.media-card h3 {
    font-size: 1.5rem;
    color: #f5b800;
    text-align: center;
    margin-bottom: 1rem;
}

.media-card p {
    color: #ddd;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* --- Footer --- */
footer {
    background: #111;
    text-align: center;
    padding: 2rem 1rem;
    color: #888;
    font-size: 0.9rem;
    border-top: 2px solid #f5b800;
    margin-top: 3rem;
    animation: glowFooter 4s infinite alternate;
}

footer a { color: #f5b800; }

/* --- Responsive --- */
@media(max-width: 960px){
    .plans { flex-direction: column; align-items: center; }
    .topbar { flex-direction: column; }
    .nav-links { justify-content: center; }
}
