:root {
    --bg-dark: #001c07;
    --text-light: #ededed;
    --text-muted: #a0aab2;
    --binder-gold: #fbb636;
    --binder-green: #3aa25b;
    --binder-green-dark: #1e5a32;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Poetsen One', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo-text,
.badge,
.collectible-badge {
    font-family: var(--font-heading);
}

.highlight-gold {
    color: var(--binder-gold);
}

.highlight-green {
    color: var(--binder-green);
}

.text-center {
    text-align: center;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--binder-green);
    color: white;
    box-shadow: 0 4px 14px rgba(58, 162, 91, 0.4);
}

.btn-primary:hover {
    background-color: #45c06c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 162, 91, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    pointer-events: none;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(0, 28, 7, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 64px;
    /* Increased height for better visibility */
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(58, 162, 91, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(251, 182, 54, 0.1);
    color: var(--binder-gold);
    border: 1px solid rgba(251, 182, 54, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #c9d1d9;
    /* Lighter text for better contrast */
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

/* Discord Mockup in Hero */
.hero-visual {
    position: relative;
    z-index: 2;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.gold-orb {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--binder-gold);
}

.green-orb {
    bottom: -10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: var(--binder-green);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-title {
    margin-left: 1rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mockup-body {
    padding: 1.5rem;
}

.chat-message {
    display: flex;
    gap: 1rem;
}

.discord-bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--binder-green), var(--binder-green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    color: white;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.username {
    font-weight: 600;
    color: white;
}

.bot-tag {
    background: #5865F2;
    color: white;
    font-size: 0.65rem;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

.timestamp {
    font-size: 0.75rem;
    color: #949ba4;
}

.embed {
    background: #2b2d31;
    border-left: 4px solid var(--binder-green);
    border-radius: 4px;
    padding: 1rem;
    margin-top: 0.5rem;
    max-width: 320px;
}

.embed-author {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.embed-title {
    color: #00A8FC;
    font-weight: 600;
    margin-bottom: 1rem;
}

.embed-fields {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.price-up {
    color: var(--binder-green);
    font-weight: 600;
    font-size: 1.125rem;
}

.embed-thumbnail {
    width: 100%;
}

.img-placeholder {
    width: 100%;
    height: 120px;
    background: #1e1f22;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.charizard-bg {
    background: linear-gradient(45deg, rgba(251, 182, 54, 0.2), rgba(251, 182, 54, 0.05));
    position: relative;
    overflow: hidden;
}

.charizard-bg::after {
    content: "🔥";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.5;
}

/* Features Grid */
.section-header {
    margin-bottom: 4rem;
}

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.feature-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.card {
    padding: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.card:hover::before {
    opacity: 1;
}

.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gold-bg {
    background: rgba(251, 182, 54, 0.15);
    color: var(--binder-gold);
}

.green-bg {
    background: rgba(58, 162, 91, 0.15);
    color: var(--binder-green);
}

.grey-bg {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Collectibles */
.collectibles-section {
    background: linear-gradient(to bottom, transparent, rgba(15, 25, 20, 0.5), transparent);
}

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

.collectible-card {
    padding: 2rem;
    text-align: left;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.collectible-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.collectible-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.collectible-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.new-feature {
    border-color: rgba(251, 182, 54, 0.3);
}

.new-feature:hover {
    border-color: var(--binder-gold);
    box-shadow: 0 12px 40px rgba(251, 182, 54, 0.15);
}

.new-feature .collectible-icon {
    background: rgba(251, 182, 54, 0.1);
    border-color: rgba(251, 182, 54, 0.2);
}

.new-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--binder-gold);
    color: black;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight Banner */
.highlight-banner .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.banner-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: var(--text-muted);
    max-width: 600px;
}

.banner-text p strong {
    color: var(--text-light);
}

.glow-green {
    background: linear-gradient(135deg, rgba(58, 162, 91, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(58, 162, 91, 0.3);
}

.glow-gold {
    background: linear-gradient(135deg, rgba(251, 182, 54, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(251, 182, 54, 0.3);
}

.banner-visual.icon-only {
    width: 80px;
    height: 80px;
    background: rgba(251, 182, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.pricing-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--binder-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.tier-features li strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.featured-tier {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.glow-gold-hover:hover {
    border-color: rgba(251, 182, 54, 0.4);
    box-shadow: 0 0 30px rgba(251, 182, 54, 0.15);
}

.glow-white-hover:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.glow-gold-border {
    border-color: rgba(251, 182, 54, 0.3);
}

.glow-gold-border:hover {
    border-color: var(--binder-gold);
    box-shadow: 0 0 40px rgba(251, 182, 54, 0.2);
}

.pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 162, 91, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(58, 162, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(58, 162, 91, 0);
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 96px;
    /* Increased size for footer prominence */
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Optional: adds a nice shadow */
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Animations & Utilities */
.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);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .pricing-grid,
    .collectibles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-tier {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    .feature-grid,
    .collectibles-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .highlight-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }
}

/* Discord Mockup */
.discord-mockup {
    background-color: #313338;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    color: #dbdee1;
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-smooth);
}

.discord-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.discord-command-interaction {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: #b5bac1;
    font-size: 14px;
    padding-left: 56px;
}

.discord-command-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.discord-command-user {
    font-weight: 500;
}

.discord-badge-text {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 4px;
}

.discord-command-name {
    color: #00a8fc;
    font-weight: 500;
}

.discord-message {
    display: flex;
    gap: 16px;
}

.discord-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.discord-message-content {
    flex: 1;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.discord-username {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.discord-bot-tag {
    background-color: #5865F2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.discord-timestamp {
    color: #949ba4;
    font-size: 12px;
}

.discord-text {
    margin-bottom: 8px;
}

.discord-mention {
    background-color: rgba(88, 101, 242, 0.3);
    color: #c9cdfb;
    padding: 0 4px;
    border-radius: 3px;
}

.discord-edited {
    font-size: 10px;
    color: #949ba4;
    margin-left: 4px;
}

.discord-embed {
    background-color: #2b2d31;
    border-radius: 4px;
    border-left: 4px solid #d17565;
    padding: 12px 16px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    position: relative;
    max-width: 430px;
}

.discord-embed-content {
    grid-column: 1;
}

.discord-embed-thumbnail {
    grid-column: 2;
    grid-row: 1;
}

.discord-embed-title {
    color: #00a8fc;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.discord-embed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.discord-embed-col,
.discord-embed-field {
    margin-bottom: 8px;
}

.discord-embed-field-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.discord-embed-field-value {
    color: #dbdee1;
}

.discord-embed-link a {
    color: #00a8fc;
    text-decoration: none;
    font-weight: 500;
}

.discord-embed-link a:hover {
    text-decoration: underline;
}

.discord-embed-image {
    margin-top: 16px;
}

.discord-embed-image img {
    max-width: 100%;
    border-radius: 4px;
    max-height: 350px;
    object-fit: contain;
}

.discord-embed-thumbnail {
    margin-left: 16px;
}

.discord-embed-thumbnail img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.discord-embed-footer {
    grid-column: 1 / -1;
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #b5bac1;
}

/* --- BINDER DEMO & HOLO CARDS (Personal Vault) --- */
.binder-demo-wrapper {
  perspective: 1500px;
}
.binder-book-container {
  position: relative;
  width: 844px;
  max-width: 100%;
  border-radius: 6px 16px 16px 6px;
  border: 1px solid #222;
  background-color: #141414;
  box-shadow: 20px 8px 50px rgba(0,0,0,0.7);
  overflow: hidden;
}
.binder-spine {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 64px;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent);
  z-index: 20;
  pointer-events: none;
}
.binder-page {
  position: relative;
  padding: 2.5rem 2rem 3rem 3rem;
  background-color: #1a1a1a;
  min-height: 800px;
}
.binder-fold {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 32px;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
  z-index: 10;
}
.binder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-content: start;
  position: relative;
  z-index: 20;
}
.binder-card-slot {
  display: flex;
  justify-content: center;
  height: 242px;
}
.binder-card-inner {
  width: 173px;
  height: 242.84px;
}
.binder-page-number {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  color: #4b5563;
  font-family: monospace;
  font-size: 0.75rem;
  user-select: none;
}
@media (max-width: 900px) {
  .binder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .binder-grid {
    grid-template-columns: 1fr;
  }
}

/* Holographic Card Component */
.holo-card-root {
  position: relative;
  aspect-ratio: 2.5/3.5;
  border-radius: 0.75rem;
  cursor: pointer;
  height: 100%;
}
.holo-card-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.holo-card-border {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.holo-card-root:hover .holo-card-border {
  border-color: var(--binder-gold);
}
.holo-card-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}
.holo-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  user-select: none;
  border-radius: 0.75rem;
}
.holo-badge-container {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  z-index: 30;
}
.holo-price-badge {
  background-color: rgba(0,0,0,0.95);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
  text-align: right;
}
.holo-price-badge span {
  color: var(--binder-gold);
  font-weight: bold;
  font-family: monospace;
  display: block;
  line-height: 1;
  padding: 0.125rem 0;
}
.holo-profit-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 11px;
  font-weight: bold;
  font-family: monospace;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(58,162,91,0.9);
  color: white;
}

/* Foil rainbow layer */
.holo-foil {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: 0.75rem;
  overflow: hidden;
  mix-blend-mode: color-dodge;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s ease;
  background: linear-gradient(125deg,
      transparent 10%,
      rgba(255, 100, 180, 0.6) 25%,
      rgba(100, 200, 255, 0.6) 45%,
      rgba(180, 100, 255, 0.6) 65%,
      rgba(100, 255, 150, 0.6) 80%,
      transparent 90%);
}
/* Glare white highlight layer */
.holo-glare {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-radius: 0.75rem;
  overflow: hidden;
  mix-blend-mode: overlay;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s ease;
  background: radial-gradient(ellipse at 40% 30%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      transparent 70%);
}
/* Staggered breathing animations */
@keyframes holo-foil-breathe {
  0% { opacity: 0; }
  35% { opacity: 0.5; }
  65% { opacity: 0.5; }
  100% { opacity: 0; }
}
@keyframes holo-glare-breathe {
  0% { opacity: 0; }
  35% { opacity: 0.3; }
  65% { opacity: 0.3; }
  100% { opacity: 0; }
}
.holo-breathe {
  animation: holo-foil-breathe 5s ease-in-out infinite;
}
.holo-breathe-glare {
  animation: holo-glare-breathe 5s ease-in-out infinite;
  animation-delay: inherit;
}
/* Hover: override animation, jump to full brightness immediately */
.holo-card-root:hover .holo-foil {
  animation: none;
  opacity: 0.6;
}
.holo-card-root:hover .holo-glare {
  animation: none;
  opacity: 0.9;
}