/* VARIABLES */
:root {
    --wj-black: #0a0a0a;
    --wj-charcoal: #121212;
    --wj-red: #FF003C;       /* Neon Red */
    --wj-gold: #B58B00;      /* Art Deco Gold */
    --wj-white: #F8F9FA;
    --wj-text-gray: #B0B0B0;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* RESET & BASE */
.wj-body {
    background-color: var(--wj-black);
    color: var(--wj-white);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

/* CONTAINER UTILITIES */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.wj-section { padding: 80px 0; }
.center { text-align: center; }
.accent-red { color: var(--wj-red); text-shadow: 0 0 10px rgba(255, 0, 60, 0.5); }

/* NAVIGATION */
.wj-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
    box-sizing: border-box;
}

.wj-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--wj-white); }
.wj-links a { margin-left: 20px; font-size: 0.9rem; font-weight: 600; color: var(--wj-text-gray); }
.wj-links a:hover { color: var(--wj-red); }
.cta-small { border: 1px solid var(--wj-white); padding: 5px 15px; border-radius: 4px; }

/* HERO SECTION */
.wj-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0505 0%, #000000 100%);
    /* NOTE: Add your background image here later */
    /* background-image: url('path-to-your-concept-art.jpg'); */
    background-size: cover;
}

.hero-content { z-index: 2; position: relative; max-width: 800px; padding: 20px; }

.sub-title { font-size: 1.2rem; letter-spacing: 3px; color: var(--wj-gold); margin-bottom: 10px; }
.main-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--wj-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}
.tagline { font-size: 1.2rem; color: var(--wj-text-gray); margin-bottom: 40px; font-style: italic; }

/* BUTTONS */
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.btn-steam {
    background-color: var(--wj-red);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--wj-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}
.btn-steam:hover { background-color: transparent; color: var(--wj-red); }

.btn-trailer {
    padding: 15px 30px;
    border: 1px solid var(--wj-white);
    font-weight: 600;
}
.btn-trailer:hover { background-color: var(--wj-white); color: var(--wj-black); }

/* CONTENT LAYOUTS */
.split-layout { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.text-col { flex: 1; min-width: 300px; }
.visual-col { flex: 1; min-width: 300px; }

.section-header { font-size: 2.5rem; margin-bottom: 20px; color: var(--wj-white); border-bottom: 2px solid var(--wj-gold); display: inline-block; padding-bottom: 10px; }

.game-frame {
    width: 100%;
    height: 300px;
    background: #1e1e1e;
    border: 1px solid var(--wj-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wj-gold);
    border-radius: 4px;
}

/* FEATURE CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }

.feature-card {
    background: #1A1A1A;
    padding: 40px;
    border-top: 3px solid var(--wj-charcoal);
    transition: 0.3s;
}
.feature-card:hover { border-top: 3px solid var(--wj-gold); transform: translateY(-5px); }

.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.feature-card h4 { font-size: 1.5rem; margin-bottom: 10px; color: var(--wj-white); }
.feature-card p { font-size: 0.95rem; color: var(--wj-text-gray); }

/* NEWSLETTER STYLING OVERRIDE */
#mc_embed_signup { background: transparent !important; color: white !important; }
#mc_embed_signup input[type=email] {
    background: #222;
    border: 1px solid var(--wj-gold);
    color: white;
    padding: 10px;
    width: 60%;
}
#mc_embed_signup input[type=submit] {
    background: var(--wj-red);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

/* --- TAROT CARD FEATURES --- */

.card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    margin-top: 60px; 
    padding-bottom: 40px;
}

.feature-card {
    position: relative;
    background: linear-gradient(160deg, #1e1e1e 0%, #0a0a0a 100%);
    padding: 40px 30px;
    border: 1px solid #333;
    border-radius: 12px; /* Smooth rounded corners */
    
    /* Tarot Card Proportions & Border */
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* The Magical Gold Border */
    box-shadow: 
        inset 0 0 0 2px #1a1a1a, /* Inner gap */
        inset 0 0 0 4px var(--wj-gold); /* Inner Gold Line */
    
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* THE HOVER EFFECT (Levitate & Glow) */
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--wj-gold);
    box-shadow: 
        inset 0 0 0 2px #1a1a1a, 
        inset 0 0 0 4px var(--wj-red), /* Border turns red on hover */
        0 15px 30px rgba(0, 0, 0, 0.5), /* Deep shadow below */
        0 0 20px rgba(181, 139, 0, 0.2); /* Outer Gold Glow */
}

/* ICON STYLING */
.card-icon { 
    font-size: 4rem; 
    margin-bottom: 25px; 
    background: -webkit-linear-gradient(var(--wj-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(181, 139, 0, 0.5));
}

.feature-card h4 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    color: var(--wj-white); 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.feature-card p { 
    font-size: 0.95rem; 
    color: var(--wj-text-gray); 
    line-height: 1.8;
    font-family: var(--font-body);
}

/* OPTIONAL: Add a "Card Back" pattern feel via pseudo-element */
.feature-card::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    pointer-events: none;
}

/* FOOTER */
.wj-footer {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
}
.wj-footer h3 { color: var(--wj-gold); margin-bottom: 10px; }
.socials { margin: 20px 0; }
.socials a { margin: 0 10px; color: var(--wj-white); text-decoration: underline; }
.copyright { font-size: 0.8rem; color: #555; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .split-layout { flex-direction: column; }
}
