:root {
    --primary-glow: #007bff;
    --success-glow: #00ff88;
    --crypto-blue: #0052FF;
    --bg-dark: #0a0a0a;
      --bg-cloud: #F0EEE9; /* Pantone 2026: Cloud Dancer */
    --marquee-speed: 40s;
    --gap: 60px;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Clips horizontal overflow */
    position: relative;
    margin: 0;
    padding: 0;
    /* Prevents the browser from calculating a width larger than the screen */
    width: 100vw; 
    overscroll-behavior-y: auto; 
    -webkit-overflow-scrolling: touch; /* Makes scrolling feel "smooth" on iPhone */
}
body {
    background-color: #FDF5EC; 
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: flex-start; 
    min-height: 100vh;      
    overflow-x: hidden;     
    -webkit-font-smoothing: antialiased;
    
}
.container {
    width: 100% !important; /* Full width of the screen */
    max-width: none !important; 
    padding: 2.5rem 1rem; /* More vertical space, less horizontal */
    background: transparent; /* Removes the white/grey box */
    backdrop-filter: none;
    border: none;
    border-radius: 0; /* Removes the rounded corners */
    box-shadow: none;
    margin: 0 !important;
    text-align: center;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* INPUTS & BUTTONS */
input {
    width: 100%;
    /* Subtle light background that pops off the tan */
    background: rgba(0, 0, 0, 0.05); 
    /* Darker border to define the box */
    border: 1px solid rgba(0, 0, 0, 0.1); 
    padding: 14px;
    border-radius: 12px;
    /* CHANGE THIS: Dark grey/black for readability */
    color: #222; 
    margin-bottom: 1rem;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* This fixes the "Placeholder" text (the faint hint text) */
input::placeholder {
    color: #888;
}

/* This highlights the box when you click into it */
input:focus {
    outline: none;
    border-color: var(--crypto-blue);
    background: rgba(255, 255, 255, 0.8);
}

.readonly-field {
    background: rgba(0,0,0,0.3) !important;
    color: #00ff88 !important;
    border: 1px dashed #444 !important;
    cursor: not-allowed;
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    background: #eee;
    color: #000;
}

/* The Animated Genesis Button */
#connectButton {
    position: relative;
    border: none;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    
    /* The "Colorwave" Gradient */
    background: linear-gradient(
        270deg, 
        #00ff88, /* Mintage Green */
        #0088ff, /* Blue */
        #7000ff, /* Purple */
        #00ff88  /* Back to Green */
    );
    background-size: 600% 600%;
    
    /* The Glow Effect */
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    
    /* The Animation */
    animation: colorwave 10s ease infinite;
}

#connectButton:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: colorwave 3s ease infinite; /* Speeds up on hover */
}

/* The Colorwave Animation Logic */
@keyframes colorwave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle Shimmer Overlay */
#connectButton::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: 0.5s;
    pointer-events: none; /* <--- ADD THIS LINE */
    z-index: 1;
}

#connectButton:hover::after {
    left: 100%;
}

#walletAddress {
    font-family: monospace;
    color: var(--crypto-blue);
    font-size: 0.75rem;
    margin-top: 10px;
    text-shadow: 0 0 8px rgba(0, 82, 255, 0.2);
}

/* LUXURY PASSPORT CARD */
.passport-card {
    background: linear-gradient(165deg, #111 0%, #000 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 24px;
    padding: 30px;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
}

.passport-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.auth-seal {
    background: linear-gradient(90deg, #00ff88, #00ccff);
    color: #000;
    font-weight: 800;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.shoe-illustration {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #ffffff 0%, #f5f5f5 100%);
    border-radius: 15px;
    margin: 15px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shoe-illustration img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shoe-illustration:hover img {
    transform: scale(1.1) rotate(-2deg);
}

/* DETAILS SECTION */
.passport-details-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-top: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.detail-label {
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.blockchain-id-section {
    background: rgba(0, 255, 136, 0.03);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 2px solid #00ff88;
    text-align: left;
}

.blockchain-id-section code {
    font-family: monospace;
    color: #00ff88;
    font-size: 0.7rem;
    word-break: break-all;
}

/* RETAILER PORTAL GRID */
.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
}
.full-width { grid-column: span 2; }
label { font-size: 0.7rem; color: #888; text-transform: uppercase; margin-bottom: 5px; display: block; }

/* TABLE STYLES */
table { width: 100%; border-collapse: collapse; font-size: 0.8rem; margin-top: 10px; }
th { color: #555; text-align: left; border-bottom: 1px solid #222; padding: 10px 0; text-transform: uppercase; font-size: 0.65rem; }
td { padding: 12px 0; border-bottom: 1px solid #111; }
.status-tag { color: #00ff88; font-weight: bold; font-size: 0.7rem; }
.brand-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0 0 0;
}

.brand-slogan {
    display: block;
    width: 90%;             /* Keeps it from touching the screen edges */
    max-width: 400px;
    margin: 20px auto;      /* Centers it and gives it breathing room */
    
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;      /* Small and sleek */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;    /* The "Luxury" spacing */
    line-height: 1.8;       /* Adds vertical space if it wraps to two lines */
    color: #888;
    text-align: center;
    
    background: linear-gradient(to right, #666, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;  /* Pushes the whole line RIGHT */
}

@keyframes fadeInSlogan {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.main-logo {
    width: 140px; /* Matched to Fox size */
    height: auto;
    display: block;
}
.nav-footer {
    position: fixed;
    bottom: 20px;
    display: flex;
    gap: 20px;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #333;
    backdrop-filter: blur(5px);
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--crypto-blue);
}
/* Mode Switcher Buttons */
.mode-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.toggle-btn {
    background: rgba(255,255,255,0.05);
    color: #666;
    border: 1px solid #333;
    padding: 6px 15px;
    border-radius: 20px;
    width: auto; /* Overrides your global button width */
    font-size: 0.7rem;
    transition: 0.3s;
}

.toggle-btn.active {
    background: var(--crypto-blue);
    color: white;
    border-color: var(--crypto-blue);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
}

/* Section visibility */
.hidden-section {
    display: none !important;
}
.container {
    /* ... your existing styles ... */
    transition: opacity 0.3s ease;
}
/* Animation for new ledger entries */
@keyframes glow-in {
    0% { background: rgba(0, 255, 136, 0.4); transform: scale(1.02); }
    100% { background: transparent; transform: scale(1); }
}

.new-entry {
    animation: glow-in 2s ease-out;
}

/* Optional: Make the feed scrollable if it gets long */
/* THE LIVE FEED CONTAINER */
/* Update this for the Live Feed */
#liveFeedContainer {
    background: #000 !important; /* Force true black */
    border: 1px solid #111;
    border-radius: 16px;
    padding: 25px;
    margin-top: 50px;
    max-width: 100%; /* Allows it to be responsive */
}

/* Add this to handle the rows we are injecting with JS */
.mintage-feed-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.feed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #080808; /* Slightly lighter than background to create depth */
    border: 1px solid #151515;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feed-row:hover {
    border-color: #00ff88;
    transform: scale(1.01);
}

/* THE "NEW ENTRY" ANIMATION */
.new-entry-row {
    animation: slideInNeon 0.8s ease-out;
}

@keyframes slideInNeon {
    0% { background: rgba(0, 255, 136, 0.3); transform: translateX(-10px); }
    100% { background: rgba(255, 255, 255, 0.03); transform: translateX(0); }
}

/* STATUS TAGS */
.status-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid #00ff88;
}

/* Keeps the table header sticky while scrolling */
th {
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    z-index: 10;
}
.transfer-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #333;
}

.transfer-input {
    font-size: 0.7rem !important;
    padding: 8px !important;
    margin-bottom: 8px !important;
    border: 1px solid var(--crypto-blue) !important;
}

.btn-transfer {
    background: var(--crypto-blue) !important;
    color: white !important;
    font-size: 0.7rem !important;
    padding: 8px !important;
}

/* 1. The Container - Forces the row to span the entire screen width */
.marquee-container {
    overflow: hidden;
    width: 100vw; 
    /* This calculation centers a full-width element even if the parent has margins */
    margin-left: calc(-50vw + 50%); 
    margin-right: calc(-50vw + 50%);
    background-color: transparent;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

/* 2. The Animation Wrapper */
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

/* 3. The Content - Ensuring no "hiccups" in the loop */
.marquee-content {
    display: flex;
    flex-shrink: 0;
    width: max-content; 
    gap: 60px; /* Space between sneakers */
    padding-left: 60px; 
    animation: infinite-scroll 40s linear infinite;
}

/* THE SEAMLESS LOOP LOGIC */
@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }
    to {
        /* Move exactly half the width of the content */
        transform: translateX(-50%); 
    }
}

/* Keep shoes crisp and handle hover without breaking the loop */
.marquee-content img {
    height: 100px; /* Adjusted for better mobile scaling */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    will-change: transform; 
}

/* Pause on hover to allow users to click a "Toe Tag" */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.main-logo:hover {
    filter: drop-shadow(0 0 10px #4FC3F7);
    transform: rotate(-2deg) scale(1.05);
}
/* --- INVALID UID POPUP --- */
.uid-error-overlay {
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(253, 245, 236, 0.8); /* Matches your Sunwashed background */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.uid-error-card {
    width: 380px;
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #eee;
    border-radius: 4px; /* Sharper, industrial corners */
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    position: relative;
    /* The "Notched" Vector look */
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

.error-status-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    color: #ff0000; /* Deep Amber for warning */
    border: 1px solid #ff0000;
    padding: 4px 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.uid-visual-failure {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #333;
    background: #f9f9f9;
    padding: 10px;
    border: 1px dashed #ccc;
    margin: 15px 0;
    letter-spacing: 4px;
}

.error-msg-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 10px;
}

.error-msg-body {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-retry {
    background: #111;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-retry:hover {
    background: var(--crypto-blue);
}
.logo-stack {
    display: flex;
    flex-direction: row; /* Forces them side-by-side */
    align-items: center; /* Centers everything vertically */
    justify-content: center; /* Centers the whole group on screen */
    gap: 15px; 
    width: 100%;
    max-width: 450px; /* Keeps the cluster tight */
    margin: 0 auto;
}

.logo-plus {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #888;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%; /* Ensures it uses the full height of the row to stay centered */
    margin-right: 30px; /* Pushes it further LEFT, away from the fox */
}
#fox-3d {
    width: 140px; 
    height: 140px;
    background-color: transparent;
    outline: none;
    pointer-events: none;
    display: block;
}
/* Add a soft orange glow behind the 3D model */
#fox-3d::part(virtual-camera) {
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.2));
}
/* Add this to your existing CSS */
.vault-wrapper {
    position: relative;
    width: 320px;
    margin: 0 auto 30px auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.vault-trigger {
    width: 100%;
    height: 55px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    color: #fff;
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
}

/* Crucial for the 3D tracking area */
.brand-header {
    position: relative; 
    z-index: 5;
}
.mintage-main-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px; /* This keeps the site centered and tight on a laptop */
    margin: 0 auto;
    gap: 40px; 
}

/* Ensure the video doesn't get massive on a big screen */
.video-sidebar {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    border-radius: 20px; /* Keep it rounded for the 'Dashboard' look */
}

.mintage-video {
    width: 100%;
    height: auto;
    display: block;
}
.video-caption {
    padding: 20px;
    background: #FDF5EC; /* Matches your tan background */
    border-top: 1px solid rgba(0,0,0,0.05); /* Very faint divider */
    font-size: 0.65rem;
    color: #888;
    text-align: center;
}
.portal-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ensure your existing containers don't conflict */
.container {
    margin: 0 !important; /* Overrides existing center margins */
}

/* Mobile responsive */
@media (max-width: 900px) {
    .mintage-main-layout {
        flex-direction: column;
        align-items: center;
    }
}
#retailerPortal {
    width: 100% !important; /* Let it fill the portal-column space up to its max-width */
    max-width: 500px;
}
@media only screen and (max-width: 480px) {
    .mintage-main-layout {
        max-width: 100vw;
        gap: 0; /* Snaps sections together like Apple.com */
    }

    .video-sidebar {
        width: 100vw !important;
        border-radius: 0; /* Goes edge-to-edge on iPhone */
    }

    .container {
        width: 100% !important;
        background: transparent !important; /* Makes the portal seamless */
        border-radius: 0;
        box-shadow: none;
        padding: 2rem 1rem;
    }
  
    /* 2. Fix the 3D Fox & Plus Sign */
 .logo-stack {
        gap: 10px;
    }

   #fox-3d {
        width: 110px;
        height: 110px;
        margin-right: 15px;
    }

  .logo-plus {
        font-size: 1.7rem;
        margin-right: 20px;
    }

    /* 3. Center the Slogan */
    .brand-slogan {
        letter-spacing: 3px !important; /* Tightens text so it doesn't wrap weirdly */
        width: 100% !important;
        text-align: center !important;
         margin-left: 1px;
    }

    /* 4. Fix the Marquee (Sneakers entering from the very edge) */
    .marquee-container {
        width: 100vw !important; /* Forces it to ignore the body padding */
        margin-left: -10px !important; /* Counters the body's padding-left */
        margin-right: -10px !important; /* Counters the body's padding-right */
    }

    /* 5. Fix the Main Logo */
  .main-logo {
        width: 200px; 
    }
/* 5. Live Feed Mobile Polish */
  #liveFeedContainer {
        background: #ffffff !important;
        /* FIX: Changed 100% to 92% to pull content away from the glass edges */
        width: 98% !important; 
        margin: 40px auto 0 auto !important; /* Centered with auto margins */
        padding: 20px 0 !important;
        border-top: 1px solid #eee;
        box-shadow: none !important;
        overflow: hidden !important; /* Prevents any accidental horizontal scrolling */
    }

    #liveFeedContainer thead {
        display: none;
    }

    #liveFeedContainer table {
        width: 100% !important;
        border-spacing: 0;
        /* FIX: Added padding here to protect the badges on the far right */
        padding: 0 10px; 
    }

    #liveFeedContainer tbody, 
    #liveFeedContainer tr {
        display: block;
        width: 100%;
    }

    #liveFeedContainer tr {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        /* FIX: Reduced side padding since the container now handles the margins */
        padding: 20px 0; 
        border-bottom: 1px solid #f9f9f9;
        white-space: normal !important;
    }

    #liveFeedContainer td {
        display: block;
        border: none !important;
        padding: 0 !important;
    }

    /* Shoe Info Column */
    #liveFeedContainer td:first-child {
        flex: 2; 
        text-align: left;
    }

    /* Status Column (The Protected Lane) */
    #liveFeedContainer td:last-child {
        /* FIX: Forces the status column to stay at a fixed width so it can't be squished */
        flex: 0 0 100px; 
        text-align: right;
        padding-right: 5px !important;
    }

.rarity-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5rem;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.5);
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Optional: Add a subtle animation to Grail items */
.rarity-badge:contains('GRAIL') {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 5px #ff4b2b; }
    50% { box-shadow: 0 0 15px #ff4b2b; }
    100% { box-shadow: 0 0 5px #ff4b2b; }
}
/* Prevents the scanner from pushing other elements around */
#reader, #walletReader {
    width: 100% !important;
    max-width: 400px;
    margin: 10px auto !important;
    border: none !important; /* Removes the library's default border */
}

/* Centers the camera feed inside the div */
#reader video, #walletReader video {
    border-radius: 12px;
    object-fit: cover;
}

/* Step containers to keep things vertically stacked and centered */
.step-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers labels and scanners */
}
}
#reader, #walletReader {
    max-height: 250px; /* Limits the vertical space */
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    margin-bottom: 15px;
}

#reader video, #walletReader video {
    object-fit: cover !important; /* Forces the video to fill the short box */
    height: 250px !important;
}

/* This targets the internal library box to keep it centered */
#reader__scan_region, #walletReader__scan_region {
    background: transparent !important;
}
#shoeModel, #shoeSize {
    transition: all 0.3s ease;
}
/* --- Professional Footer Section --- */
.mintage-footer {
    background: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 60px 20px 30px;
    margin-top: 80px;
    color: #fff;
    border-radius: 24px; /* Adjust this number to make it more or less rounded */
    overflow: hidden;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-small {
    height: 30px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #444;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
.mintage-footer-logo {
  height: 85px;       /* This is the "Sweet Spot" between small and medium */
  width: auto;        /* Keeps the proportions perfect */
  display: block;
  margin: 0 auto 10px; /* Centers it and adds space before the text */
  filter: none;       /* Remove any weird filters we tried earlier */
  object-fit: contain; /* Ensures the whole logo fits in the box */
}
.vault-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Fix for landscape mobile phones */
@media (max-height: 500px) and (orientation: landscape) {
    .mintage-main-layout {
        flex-direction: column !important; /* Stack instead of side-by-side */
    }
    
    .video-sidebar {
        min-width: 100% !important;
        height: 200px; /* Shrink video height so list is visible */
    }

    .portal-column {
        padding: 10px !important;
    }

    .feed-row {
        padding: 10px; /* More compact for small screens */
    }
}
/* Special Gold Background for Genesis Pass */
.vault-card.genesis-pass .card-image-wrapper {
    background: radial-gradient(circle, #f3cf4b 0%, #b58c2a 100%);
    border: 1px solid #ffd700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

/* Add a "Golden Shimmer" effect across the pass */
.vault-card.genesis-pass .card-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: goldShimmer 4s infinite;
}

@keyframes goldShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Premium Badge Styling */
.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.4rem;
    color: #fff;
    background: #b58c2a;
    border: 1px solid #ffd700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Orbitron';
    z-index: 2;
}

/* Ensure the logo sits nicely on the gold */
.vault-card.genesis-pass .shoe-img {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    max-width: 80%;
    z-index: 1;
}
.shimmer-layer {
    background-size: 200% 100% !important; /* Makes the gradient wide enough to "slide" */
    animation: metallicShimmer 3s infinite linear;
}

@keyframes metallicShimmer {
    0% {
        background-position: -150% 0;
    }
    100% {
        background-position: 150% 0;
    }
}