/*
Theme Name: Into88 Prison Break
Theme URI: https://into88casino.net
Author: Into88 Dev Team
Description: 2026 SEO Optimized & Anti-Footprint Theme (Full Integrity Version)
Version: 3.4.0 (Complete Edition)
*/

:root {
    --into-bg: #0a0a0a;
    --into-panel: #141414;
    --into-border: #333;
    --into-text: #e0e0e0;
    --into-accent: #00ff41; /* Terminal Green */
    --into-alert: #ff3333; /* Critical Red */
    --into-gold: #ffd700;
    --into-warm-bg: #f9f7f2; 
    --into-warm-text: #4a4036;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --font-hand: "Comic Sans MS", "Chalkboard SE", sans-serif;
}

/* 1. RESET & BASICS */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--into-bg); color: var(--into-text); font-family: var(--font-stack); line-height: 1.8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* 2. UTILITY */
.into_wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }
.into_grid { display: grid; gap: 30px; }

/* 3. HEADER (Fixed & Blurred) */
.into_head { 
    border-bottom: 1px solid var(--into-border); 
    background: rgba(10,10,10,0.95); 
    backdrop-filter: blur(5px); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    padding: 15px 0; 
}
.into_logo svg { height: 40px; fill: var(--into-accent); }
.into_nav ul { display: flex; gap: 25px; }
.into_nav a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 700; }
.into_nav a:hover { color: var(--into-accent); text-shadow: 0 0 8px var(--into-accent); }

/* 4. HERO SECTION (Split Layout & Animations) */
.into_hero { 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #000 100%); 
    overflow: hidden; 
}
.into_bars { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: repeating-linear-gradient(90deg, transparent 0, transparent 100px, rgba(0,0,0,0.9) 100px, rgba(0,0,0,0.9) 110px); 
    pointer-events: none; z-index: 2; 
}
.into_hero_grid { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; 
    align-items: center; width: 100%; max-width: 1100px; 
    position: relative; z-index: 5; 
}
.into_hero_left { text-align: left; padding-right: 20px; }
.into_hero_right { position: relative; display: flex; justify-content: center; }

/* Typography */
.into_hero h1 { font-size: 3rem; margin-bottom: 20px; color: var(--into-text); letter-spacing: -1px; font-weight: 800; line-height: 1.2; }
.into_hero h1 span { color: var(--into-alert); font-size: 0.6em; display: block; margin-bottom: 10px; letter-spacing: 2px; font-family: monospace; }
.into_hero p { color: #aaa; margin-bottom: 40px; font-size: 1.1rem; line-height: 1.6; }

/* Hero Button */
.into_btn { 
    display: inline-block; padding: 15px 40px; 
    background: rgba(0, 255, 65, 0.1); border: 1px solid var(--into-accent); 
    color: var(--into-accent); font-weight: bold; text-transform: uppercase; 
    cursor: pointer; letter-spacing: 2px; position: relative; overflow: hidden; 
}
.into_btn::before { 
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(0,255,65,0.2), transparent); transition: 0.5s; 
}
.into_btn:hover::before { left: 100%; }
.into_btn:hover { background: var(--into-accent); color: #000; box-shadow: 0 0 20px var(--into-accent); }

/* 5. VISUAL ANIMATIONS (Chained Dev) */
.into_dev_visual { width: 320px; height: 320px; position: relative; filter: drop-shadow(0 0 10px rgba(0,255,65,0.1)); }
.into_chain_anim { transform-origin: top center; animation: chain_rattle 3s infinite ease-in-out; }
@keyframes chain_rattle { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(2deg); } }
.into_type_anim { animation: typing 0.2s infinite alternate; }
@keyframes typing { from { transform: translateY(0); } to { transform: translateY(-2px); } }
.into_status_blink { display: inline-block; width: 8px; height: 8px; background: var(--into-alert); border-radius: 50%; animation: blink 1s infinite; margin-right: 8px; }
@keyframes blink { 50% { opacity: 0; } }

/* 6. CONTENT SECTIONS (Labor, Terminal, Ascension) */
.into_labor_section { padding: 100px 0; background: #0d0d0d; border-bottom: 1px solid var(--into-border); }
.into_dev_grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.into_dev_card { background: #111; border: 1px solid #222; padding: 40px 30px; position: relative; overflow: hidden; transition: transform 0.3s; }
.into_dev_card:hover { transform: translateY(-10px); border-color: var(--into-accent); }
.into_dev_icon { width: 60px; height: 60px; margin-bottom: 25px; fill: #444; transition: fill 0.3s; }
.into_dev_card:hover .into_dev_icon { fill: var(--into-accent); }
.into_dev_card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }
.into_dev_card p { color: #777; font-size: 0.95rem; line-height: 1.6; }

.into_terminal_section { padding: 80px 0; background: #050505; }
.into_terminal_block { background: #000; border: 1px solid #333; padding: 40px; font-family: monospace; color: #bbb; max-height: 500px; overflow-y: auto; }
.into_cmd { color: var(--into-accent); margin-bottom: 10px; display: block; }
.into_output { margin-bottom: 20px; display: block; padding-left: 20px; border-left: 2px solid #333; }

.into_ascension { background: linear-gradient(180deg, #0a0a0a 0%, #4a4036 50%, #f9f7f2 100%); padding: 150px 0 100px; text-align: center; }
.into_ascension h2 { font-size: 3rem; color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.3); margin-bottom: 30px; font-weight: 300; }
.into_ascension p { color: #ddd; max-width: 600px; margin: 0 auto; }

/* 7. MOM'S TABLE SECTION (Light Theme) */
.into_mom_section { background: var(--into-warm-bg); color: var(--into-warm-text); padding: 100px 0; border-top: 10px solid #e0dcd0; }
.into_table_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.into_letter_paper { background: #fff; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: rotate(-2deg); border: 1px solid #eee; position: relative; }
.into_letter_paper::before { content: ''; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 30px; background: rgba(200,200,200,0.3); } 
.into_handwritten { font-family: var(--font-hand); color: #555; font-size: 1.1rem; line-height: 2; }
.into_signature { text-align: right; margin-top: 30px; font-weight: bold; color: var(--into-warm-text); font-style: italic; }

.into_menu_board { background: #fff; padding: 40px; border: 2px solid var(--into-warm-text); border-radius: 5px; box-shadow: 10px 10px 0 rgba(74, 64, 54, 0.1); }
.into_menu_title { text-align: center; border-bottom: 2px solid var(--into-warm-text); padding-bottom: 20px; margin-bottom: 30px; font-weight: 900; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.into_menu_item { display: flex; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px dashed #ccc; padding-bottom: 5px; }
.into_menu_name { font-weight: bold; }
.into_menu_price { font-family: monospace; font-weight: bold; color: #d35400; }

.into_polaroid { background: #fff; padding: 15px 15px 50px 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); width: 100%; max-width: 300px; margin: 40px auto; transform: rotate(3deg); text-align: center; font-family: var(--font-hand); color: #888; border: 1px solid #ddd; }
.into_polaroid_img { background: #eee; height: 200px; width: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 3rem; }

#into_gate { padding: 100px 0; background: #fff; color: #000; text-align: center; border-top: 1px dashed #ccc; }
.into_trap_btn { background: var(--into-warm-text); color: #fff; padding: 25px 80px; font-size: 1.8rem; border: none; cursor: pointer; border-radius: 50px; font-weight: 900; box-shadow: 0 20px 40px rgba(74, 64, 54, 0.3); transition: all 0.3s; }
.into_trap_btn:hover { transform: scale(1.05); background: #d35400; }

/* 8. SUBPAGE STYLES (CRITICAL: DO NOT REMOVE) */
.into_sub_head { padding: 120px 0 60px; text-align: center; background: radial-gradient(circle at top, #1a1a1a 0%, #000 100%); border-bottom: 1px solid var(--into-border); }
.into_sub_head h1 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; letter-spacing: -1px; }
.into_sub_head p { color: var(--into-accent); font-family: monospace; font-size: 1.1rem; letter-spacing: 1px; }

.into_content { padding: 80px 0; max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: #ccc; line-height: 1.9; }
.into_content h2 { color: #fff; margin: 60px 0 30px; font-size: 1.8rem; border-left: 4px solid var(--into-accent); padding-left: 20px; }
.into_content h3 { color: var(--into-accent); margin: 40px 0 20px; font-size: 1.4rem; }
.into_content p { margin-bottom: 25px; text-align: justify; }
.into_content strong { color: #fff; }
.into_content ul { list-style: disc; padding-left: 20px; margin-bottom: 30px; color: #aaa; }
.into_content li { margin-bottom: 10px; }

/* Forms (Signal/Contact) */
.into_form_box { background: #111; padding: 40px; border: 1px solid #333; margin-top: 40px; }
input, select, textarea { width: 100%; padding: 15px; background: #000; border: 1px solid #444; color: #fff; margin-bottom: 20px; font-family: inherit; border-radius: 4px; }
input:focus, select:focus, textarea:focus { border-color: var(--into-accent); }

/* 9. FOOTER & MOBILE DOCK */
.into_foot { background: #fdfdfd; padding: 40px 0; border-top: 1px solid #eee; color: #666; font-size: 0.85rem; }
.into_trust_badges { display: flex; gap: 20px; margin-bottom: 20px; justify-content: center; opacity: 0.6; filter: grayscale(100%); transition: 0.3s; }
.into_trust_badges svg { height: 35px; width: auto; }
.into_trust_badges:hover { filter: grayscale(0%); opacity: 1; }
.into_foot_links { text-align: center; margin-bottom: 15px; }
.into_foot_links a { margin: 0 10px; color: #333; font-weight: 600; }

.into_dock { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.98); border-top: 1px solid #d4a373; display: flex; justify-content: space-around; padding: 15px 0; z-index: 9999; backdrop-filter: blur(5px); }
.into_dock a { color: var(--into-warm-text); font-size: 0.8rem; font-weight: bold; }

/* 10. RESPONSIVE */
@media(max-width: 768px) { 
    .into_dock { display: flex; }
    .into_nav { display: none; }
    .into_hero_grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .into_hero_left { padding-right: 0; order: 2; }
    .into_hero_right { order: 1; margin-bottom: 20px; }
    .into_table_grid { grid-template-columns: 1fr; }
}