/* Night Wolf Design System */
:root {
    /* Colors */
    --void-black: #050508;
    --midnight-blue: #0a0a12;
    --deep-forest: #0d1416;
    --wolf-grey: #1a1a24;

    --moonlight-cyan: #00f0ff;
    --mystic-purple: #9d00ff;
    --predator-red: #ff0055;
    --eye-yellow: #ffeb3b;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;

    /* Gradients */
    --grad-nebula: linear-gradient(135deg, var(--midnight-blue) 0%, var(--wolf-grey) 100%);
    --grad-glow: linear-gradient(90deg, var(--moonlight-cyan), var(--mystic-purple));
    --grad-dark: linear-gradient(to bottom, var(--void-black), var(--midnight-blue));

    /* Typography */
    --font-heading: 'Orbitron', 'Cinzel', serif;
    /* Sci-fi meets Gothic */
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Effects */
    --glass-bg: rgba(26, 26, 36, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    --deep-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

body {
    background-color: var(--void-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 20%);
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-accent);
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gradient {
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes moonlight-pulse {
    0% {
        box-shadow: 0 0 5px var(--moonlight-cyan);
    }

    50% {
        box-shadow: 0 0 20px var(--moonlight-cyan), 0 0 10px var(--mystic-purple);
    }

    100% {
        box-shadow: 0 0 5px var(--moonlight-cyan);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes stars-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

/* Components */

/* Buttons */
.btn-wolf-primary {
    background: transparent;
    border: 2px solid var(--moonlight-cyan);
    color: var(--moonlight-cyan);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-wolf-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--moonlight-cyan);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-wolf-primary:hover::before {
    left: 0;
}

.btn-wolf-primary:hover {
    color: var(--void-black);
    box-shadow: var(--neon-shadow);
}

.btn-wolf-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-wolf-secondary:hover {
    border-color: var(--mystic-purple);
    color: var(--mystic-purple);
    text-shadow: 0 0 8px rgba(157, 0, 255, 0.5);
}

/* Navbar */
.wolf-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--moonlight-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--eye-yellow);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Hero Section */
.moon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    /* Nav height */
    overflow: hidden;
}

.moon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, #1a1a2e 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.moon-orb {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #ddd 20%, #aaa 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: polygon(5% 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0 10%);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--moonlight-cyan);
    color: var(--moonlight-cyan);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Features Grid */
.wild-features {
    padding: 8rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--moonlight-cyan);
}

.feature-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 1rem;
}

.feature-card h3 {
    color: var(--eye-yellow);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* About Section */
.pack-section {
    position: relative;
    padding: 8rem 2rem;
    background: #08080c;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-content {
    direction: ltr;
    /* Reset text direction */
}

.about-visual {
    position: relative;
}

.visual-frame {
    border: 2px solid var(--wolf-grey);
    padding: 1rem;
    position: relative;
}

.visual-frame img {
    filter: grayscale(80%) contrast(120%);
    transition: filter 0.5s;
    width: 100%;
}

.visual-frame:hover img {
    filter: grayscale(0%) contrast(100%);
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--moonlight-cyan);
    border-left: 2px solid var(--moonlight-cyan);
}

.visual-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--mystic-purple);
    border-right: 2px solid var(--mystic-purple);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Disclaimer Badges */
.disclaimer-bar {
    background: var(--wolf-grey);
    padding: 3rem 1rem;
    text-align: center;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.badge-item img {
    height: 50px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s;
}

.badge-item:hover img {
    filter: none;
    opacity: 1;
}

/* Disclaimer Text Section */
.text-disclaimer-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.disclaimer-point {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-point strong {
    color: var(--predator-red);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
}

/* Contact Section */
.howl-contact {
    background: linear-gradient(180deg, var(--void-black) 0%, #151520 100%);
    padding: 8rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-panel {
    background: var(--glass-bg);
    padding: 2rem;
    border: var(--glass-border);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--moonlight-cyan);
    margin-bottom: 0.5rem;
}

.form-panel {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-glow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--moonlight-cyan);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.den-footer {
    background: #000;
    border-top: 1px solid var(--wolf-grey);
    padding: 5rem 2rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    max-width: 400px;
}

.footer-brand-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-subs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-subs input {
    background: #111;
    border: 1px solid #333;
    padding: 0.8rem;
    color: #fff;
}

.footer-legal {
    text-align: center;
    border-top: 1px solid #111;
    margin-top: 4rem;
    padding-top: 2rem;
    color: #444;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-modal {
    background: var(--midnight-blue);
    border: 1px solid var(--predator-red);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.2);
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Add mobile menu later if needed, for now simplicity */
    }

    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
}