/* -----------------------------------------------------------
   MIKA LOVE TATTOO - PRODUCTION STYLESHEET
   Theme: The Love Club (Next Level Edition)
   Features: Holographic 3D, Ink Bleed, Glass Pill Nav, Liquid Gold
   ----------------------------------------------------------- */

/* --- VARIABLES & RESET --- */
:root {
    /* Color Palette */
    --bg-dark: #121212;
    --bg-card: #1a1a1a;
    --text-main: #f4f4f4;
    --text-muted: #a0a0a0;
    
    /* Brand Accents */
    --accent-rose: #bcaaa4;  /* Dusty Rose */
    --accent-gold: #c5a059;  /* Liquid Gold */
    --border-light: rgba(255, 255, 255, 0.15); 
    
    /* Typography */
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
    
    /* Spacing */
    --section-pad: 6rem 5%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, filter 0.5s ease;
    
    /* OPTIMIZED NOISE TEXTURE (Base64) */
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAABMTExERERmZmYzMzNmZmY6U14NAAAAB3RSTlMABDQzMzMzM75F8wAAAClJREFUOMtjYCAJcO7cOQOlgIUBg4EBK4Mwg6WlJSOEZWlpCWEZSgYAAEp8M/E5u9rDAAAAAElFTkSuQmCC');
    background-repeat: repeat;
    background-blend-mode: overlay;
    background-attachment: fixed;
    
    cursor: none; 
}

/* Hide default cursor on interactive elements */
a, button, input, select, textarea {
    cursor: none; 
}

/* --- SECRET MODE (EASTER EGG) --- */
body.secret-mode {
    background-color: #f4f4f4;
    color: #121212;
    background-blend-mode: multiply;
}
body.secret-mode .hero-texture { filter: invert(1); opacity: 0.1; }
body.secret-mode .card, body.secret-mode .review-card, body.secret-mode .club-form {
    background: #fff; color: #121212; border-color: #121212;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
body.secret-mode h1, body.secret-mode h2, body.secret-mode h3 { color: #121212; }
body.secret-mode .spade-icon { color: #121212; }
body.secret-mode .custom-cursor { border-color: #121212; mix-blend-mode: normal; }

/* --- ALIVE EFFECTS (CURSOR) --- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-rose);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
    will-change: transform; 
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-rose);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background: rgba(188, 170, 164, 0.2);
    border-color: transparent;
}

.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--accent-rose);
}

/* --- TYPOGRAPHY & INK BLEED --- */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-main);
}

.accent-text {
    color: var(--accent-rose);
    font-style: italic;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Ink Bleed Animation Class */
.ink-bleed {
    display: inline-block;
    color: rgba(255,255,255,0.1); /* Start faint */
    background: linear-gradient(to top, var(--text-main) 50%, var(--text-main) 50%);
    background-size: 100% 200%;
    background-position: top;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ink-bleed.visible {
    background-position: bottom; /* Fills up with ink */
    color: transparent; /* Text becomes the gradient */
}

.pre-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-rose);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.sub-header {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* --- BUTTONS --- */
.btn-solid, .btn-submit {
    display: inline-block;
    background: var(--accent-rose);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--accent-rose);
    transition: all 0.3s ease;
    cursor: none; 
    letter-spacing: 1px;
}

.btn-solid:hover, .btn-submit:hover {
    background: transparent;
    color: var(--accent-rose);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--text-main);
    transition: all 0.3s ease;
    margin-right: 1rem;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* --- NAVIGATION (DESKTOP DEFAULT) --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-rose);
    text-decoration: none;
    z-index: 1001;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent-rose);
}

/* Hide Icons on Desktop */
.mobile-icon {
    display: none;
}

.btn-nav {
    border: 1px solid var(--accent-rose);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

.btn-nav:hover {
    background: var(--accent-rose);
    color: var(--bg-dark) !important;
}

.menu-toggle {
    display: none; /* Hidden by default, rarely needed with Glass Pill */
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    filter: grayscale(100%) contrast(120%);
}

.giant-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
}

.giant-watermark svg {
    width: 100%;
    height: 100%;
    fill: var(--text-main);
    animation: slowRotate 60s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(18,18,18,0.4) 0%, rgba(18,18,18,1) 90%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.spade-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.spade-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(188, 170, 164, 0.3));
    animation: drawSpade 3s ease-out forwards;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.spade-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    font-size: 4rem;
    color: var(--text-main);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

/* LIQUID GOLD TITLE */
.hero h1 {
    font-size: 4rem;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f4f4f4 0%, #c5a059 20%, #f4f4f4 40%, #c5a059 60%, #f4f4f4 80%, #c5a059 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    text-shadow: none; 
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--accent-rose);
    margin: 1.5rem auto;
    box-shadow: 0 0 10px var(--accent-rose);
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 10px rgba(0,0,0,0.8);
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--text-main);
    animation: scrollDown 2s infinite;
}

/* --- ARTIST INTRO --- */
.artist-intro {
    padding: var(--section-pad);
    background: var(--bg-card);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 3fr 2fr; 
    gap: 4rem;
    align-items: center;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--accent-rose);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--accent-gold);
}

.stat-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.frame-container {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--border-light);
    max-width: 450px; 
    width: 100%;
}

.frame-container img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: 0.5s;
}

.frame-container:hover img {
    filter: grayscale(0%);
}

.corner-accents::before, .corner-accents::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-rose);
    transition: 0.3s;
}

.corner-accents::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.corner-accents::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }

/* --- PORTFOLIO (POKER HAND SPLIT) --- */
.portfolio-section {
    padding: var(--section-pad);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.deck-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hand-container {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    z-index: 5;
    pointer-events: none;
}

.deck-container {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px; 
    height: 460px;
    z-index: 10;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
    transform-origin: bottom center;
}

.card.in-hand {
    box-shadow: -10px 10px 20px rgba(0,0,0,0.5);
    border: 1px solid var(--accent-rose);
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: radial-gradient(white 80%, transparent 100%); 
    filter: grayscale(80%) contrast(120%);
    transition: filter 0.5s ease;
}

.card.active .card-inner img {
    filter: grayscale(0%) contrast(100%);
}

.signature {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: var(--font-script);
    color: var(--accent-rose);
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    pointer-events: none;
    transform: rotate(-5deg);
}

.deck-controls {
    position: absolute;
    bottom: 20px;
    right: 15%;
    width: 300px;
    text-align: center;
    z-index: 20;
}

.deck-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-rose);
    color: var(--text-main);
    font-family: var(--font-head);
    font-size: 1.1rem;
    padding-bottom: 5px;
    cursor: none; 
    transition: 0.3s;
}

.deck-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.deck-btn:hover:not(:disabled) { color: var(--accent-rose); padding-bottom: 8px; }
.deck-btn .arrow { display: inline-block; transition: transform 0.3s; }
.deck-btn:hover:not(:disabled) .arrow { transform: translateX(5px); }

/* --- REVIEWS (THE TICKER) --- */
.reviews-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, #121212, #181818);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 300px;
    padding-left: 100%;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-move {
    display: flex;
    animation: ticker 40s linear infinite;
}

.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    margin: 0 15px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.review-card:hover {
    background: rgba(188, 170, 164, 0.05);
    border-color: var(--accent-rose);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stars { color: var(--accent-gold); letter-spacing: 3px; font-size: 1rem; }
.review-text { font-style: italic; font-size: 0.95rem; line-height: 1.5; color: #d0d0d0; }
.reviewer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.reviewer .name { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--accent-rose); }
.reviewer .badge { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: #666; border: 1px solid #333; padding: 3px 6px; border-radius: 2px; }

/* --- MERCH SECTION (HOLOGRAPHIC) --- */
.merch-section {
    padding: var(--section-pad);
    background: var(--bg-dark);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-item {
    text-align: left;
    perspective: 1000px; /* Enable 3D */
}

/* Holographic Card Logic */
.merch-image-wrap {
    position: relative;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
    margin-bottom: 1.5rem;
    
    /* 3D Transform defaults */
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.1s; /* Quick response for mouse movement */
}

.merch-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* The Sheen/Glare Effect */
.holo-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        115deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 30%, 
        rgba(197, 160, 89, 0.2) 45%, /* Gold tint */
        rgba(255,255,255,0.1) 60%, 
        transparent 100%
    );
    mix-blend-mode: overlay;
    opacity: 0; /* Hidden until hover */
    pointer-events: none;
    transform: translateX(var(--sheen-x, -100%));
    transition: opacity 0.3s;
}

.merch-item:hover .holo-sheen {
    opacity: 1;
}

.merch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(20px); /* Float above card */
}

.merch-item:hover .merch-overlay {
    opacity: 1;
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-primary-small:hover { background: #fff; color: #000; }
.merch-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.merch-info .price { color: var(--accent-rose); font-weight: 600; margin-bottom: 0.5rem; }
.merch-info .details { font-size: 0.8rem; color: var(--text-muted); }

/* --- CONTACT SECTION & NEON STATUS --- */
.contact-section {
    padding: var(--section-pad);
    background: #0d0d0d;
    position: relative;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    font-family: var(--font-head);
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff4444; 
    box-shadow: 0 0 10px #ff4444, 0 0 20px #ff4444;
    animation: neon-flicker 1.5s infinite alternate;
}

.status-text {
    font-weight: bold;
    letter-spacing: 2px;
    color: #ff4444; 
    text-shadow: 0 0 10px #ff4444; 
}

.contact-desc { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.info-block { margin-bottom: 2rem; }
.info-block h4 { color: var(--accent-rose); margin-bottom: 0.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.info-block p { font-size: 0.9rem; color: #ccc; }

.club-form {
    background: #1a1a1a;
    padding: 3rem;
    position: relative;
    border: 1px solid var(--accent-rose);
    box-shadow: 0 0 0 5px #121212, 0 0 0 6px var(--border-light), 0 20px 50px rgba(0,0,0,0.8);
    border-radius: 2px; 
}

.club-form::after {
    content: 'EST 2013';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 3rem;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    transform: rotate(-15deg);
}

.form-group { position: relative; margin-bottom: 1.5rem; }
.club-form input, .club-form select, .club-form textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid #444;
    padding: 0.8rem 0; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: 0.3s;
}
.club-form input:focus, .club-form select:focus, .club-form textarea:focus {
    outline: none; border-bottom-color: var(--accent-rose);
}
.club-form label {
    position: absolute; top: 0.8rem; left: 0; color: #666; pointer-events: none; transition: 0.3s ease all; font-size: 0.9rem;
}
.club-form input:focus ~ label, .club-form input:not(:placeholder-shown) ~ label,
.club-form textarea:focus ~ label, .club-form textarea:not(:placeholder-shown) ~ label {
    top: -10px; font-size: 0.7rem; color: var(--accent-rose);
}
.club-form select { color: #999; }
.club-form select:valid { color: var(--text-main); }

/* --- FOOTER --- */
footer {
    background: #080808; padding: 4rem 5%; text-align: center; border-top: 1px solid #222;
    padding-bottom: 8rem; /* Extra space for Glass Pill on mobile */
}
.footer-logo { font-family: var(--font-script); font-size: 2rem; color: var(--text-main); margin-bottom: 1.5rem; }
.social-links { margin-bottom: 2rem; }
.social-links a { color: var(--text-muted); font-size: 1.2rem; margin: 0 10px; transition: 0.3s; }
.social-links a:hover { color: var(--accent-rose); }
.copyright, .credit { font-size: 0.8rem; color: #555; margin-bottom: 0.5rem; }

/* --- ANIMATIONS --- */
@keyframes drawSpade { 0% { stroke-dashoffset: 400; opacity: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } }
@keyframes slowRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shine { to { background-position: 200% center; } }
@keyframes neon-flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; box-shadow: 0 0 10px currentColor, 0 0 20px currentColor; } 20%, 24%, 55% { opacity: 0.5; box-shadow: none; } }

.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .intro-image { justify-content: center; }
    .stats { justify-content: center; }
    .contact-container { grid-template-columns: 1fr; }
    /* Tablet Poker Layout */
    .deck-container { right: 50%; transform: translate(50%, -50%); }
    .deck-controls { right: 50%; transform: translateX(50%); }
    .hand-container { left: 50%; top: 20%; transform: translate(-50%, 0) scale(0.8); opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .spade-logo-container { width: 80px; height: 80px; }
    .spade-icon { font-size: 2.5rem; }
    .giant-watermark { width: 400px; height: 400px; }
    
    .menu-toggle { display: none; } /* Hide hamburger */
    
    /* GLASS PILL NAVIGATION (Mobile Dock) */
    .nav-container {
        justify-content: center;
        width: 100%;
    }
    
    nav {
        top: auto;
        bottom: 20px; /* Float at bottom */
        padding: 0;
        background: transparent;
        pointer-events: none; /* Let clicks pass through outside the pill */
    }
    
    nav.scrolled {
        background: transparent;
        border: none;
    }
    
    .nav-links {
        display: flex;
        justify-content: space-around;
        width: 90%;
        max-width: 400px;
        background: rgba(26, 26, 26, 0.85); /* Glass Background */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 15px 10px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        pointer-events: all;
        position: static;
        height: auto;
        flex-direction: row;
    }
    
    .nav-links li { margin: 0; }
    
    .nav-links a {
        font-size: 0.65rem;
        color: #a0a0a0;
        letter-spacing: 0.5px;
    }
    
    .nav-links a.active, .nav-links a:hover {
        color: var(--accent-rose);
    }
    
    .mobile-icon {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .btn-nav { border: none; padding: 0; }
    .btn-nav:hover { background: transparent; color: var(--accent-rose) !important; }
    
    /* Hide the Logo in the floating bar to save space */
    .logo { display: none; }

    /* Deck Adjustments */
    .deck-container { right: 50%; transform: translate(50%, -50%) scale(0.75); top: 52%; }
    .card-inner { border-color: rgba(255,255,255,0.3); }
    .deck-controls { right: 50%; transform: translateX(50%); bottom: 0; width: 100%; }
    .hand-container { opacity: 0; pointer-events: none; }
}