:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #39ff14;
    /* Neon Green! */
    --accent-secondary: #00ff00;
    /* Another Green */
    --accent-tertiary: #ccff00;
    /* Lime */
    --card-bg: rgba(0, 20, 0, 0.2);
    /* Slight green tint */
    --font-main: 'Outfit', sans-serif;

    --spacing-sm: 0.5rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.4;
    /* Tighter line height */
}

/* Dynamic Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #151515 0%, #000000 100%);
    transition: background 1.5s ease-in-out;
}

/* Background Phases - Subtle Grey Shifts */
.bg-phase-1 {
    background: radial-gradient(circle at 50% 30%, #202020 0%, #000000 80%) !important;
}

.bg-phase-2 {
    background: radial-gradient(circle at 80% 80%, #1a1a1a 0%, #000000 80%) !important;
}

/* Floating Elements */
.floating-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    perspective: 1000px;
}

.floater {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 9px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    /* Slightly more visible */
    filter: brightness(0.9) contrast(1.1);
    /* Vibrant but not washed out */
    animation: floatCard 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-30px) rotate(5deg) scale(1.02);
    }

    66% {
        transform: translateY(10px) rotate(-5deg) scale(0.98);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

.floater:nth-child(1) {
    top: 15%;
    left: 10%;
    width: 150px;
    animation-delay: 0s;
}

.floater:nth-child(2) {
    top: 60%;
    right: 5%;
    width: 200px;
    animation-delay: 2s;
    animation-duration: 8s;
    transform: rotate(10deg);
}

.floater:nth-child(3) {
    top: 80%;
    left: 20%;
    width: 100px;
    animation-delay: 1s;
    animation-duration: 5s;
    transform: rotate(-5deg);
}

.floater:nth-child(4) {
    top: 25%;
    right: 20%;
    width: 120px;
    animation-delay: 3s;
    transform: rotate(20deg);
}

.floater:nth-child(5) {
    top: 50%;
    left: 45%;
    width: 130px;
    animation-delay: 2.5s;
    animation-duration: 14s;
    transform: rotate(25deg);
}

.floater:nth-child(6) {
    top: 5%;
    right: 40%;
    width: 170px;
    animation-delay: 4s;
    animation-duration: 11s;
    transform: rotate(-10deg);
}

.floater:nth-child(7) {
    top: 90%;
    right: 15%;
    width: 150px;
    animation-delay: 1.5s;
    animation-duration: 13s;
    transform: rotate(15deg);
}

.floater:nth-child(8) {
    top: 35%;
    left: 2%;
    width: 190px;
    animation-delay: 3.5s;
    animation-duration: 16s;
    transform: rotate(-20deg);
}

.floater:nth-child(9) {
    top: 65%;
    left: 70%;
    width: 110px;
    animation-delay: 5.5s;
    animation-duration: 9s;
    transform: rotate(30deg);
}

.floater:nth-child(10) {
    top: 15%;
    left: 80%;
    width: 140px;
    animation-delay: 0.5s;
    animation-duration: 12s;
    transform: rotate(-8deg);
}

/* Utilities */
.container {
    max-width: 1000px;
    /* More compact width */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    /* Smaller padding */
    background-color: var(--text-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    /* Smaller headings */
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    /* Less margin */
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(57,255,20,0.08);
    box-shadow: 0 1px 0 rgba(57,255,20,0.05), 0 8px 32px rgba(0,0,0,0.4);
    transition: background 0.3s;
}
.navbar.navbar-scrolled {
    background: rgba(5, 5, 5, 0.92);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon {
    font-size: 1rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 6px var(--accent-color));
    line-height: 1;
}
.nav-logo-text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-color), #b8ff6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-link {
    position: relative;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 1.5px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: transform 0.25s ease;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.04);
}
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA button */
.nav-cta {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #000;
    background: var(--accent-color);
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(57,255,20,0.35);
    transition: box-shadow 0.25s, transform 0.2s;
}
.nav-cta:hover {
    box-shadow: 0 0 28px rgba(57,255,20,0.55);
    transform: translateY(-1px);
}
.nav-cta-shimmer {
    position: absolute;
    top: 0; left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 2.5s infinite;
}

/* Sections */
.section {
    min-height: auto;
    /* Remove 100vh constraint */
    padding: var(--spacing-xl) 0;
    /* Use reduced spacing */
}

/* Hero */
.hero-section {
    min-height: 80vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Smaller min-width */
    gap: var(--spacing-md);
}

/* Cards */
.card,
.price-card {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 4px;
    /* Sharper corners for "Boxy" look */
    border: 1px solid var(--accent-color);
    /* Neon Border */
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
    /* Subtle glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.price-card:hover {
    transform: translateY(-3px);
    background: rgba(57, 255, 20, 0.05);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    /* Stronger glow on hover */
}

/* Pricing Special */
.price-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 3px solid var(--accent-color);
    /* Thicker border for emphasis */
    background: rgba(57, 255, 20, 0.08);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.per-card {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact / Form Section */
.contact-section {
    min-height: auto;
    padding-bottom: var(--spacing-xl);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-color);
}

input,
select,
textarea {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-color);
    /* Neon Border for inputs too */
    color: var(--text-color);
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.form-note {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* Footer */
footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    margin-top: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.buttons-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.buttons-row button,
.buttons-row a {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* Pricing Table */
.pricing-main-card {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.pricing-row:hover {
    background: rgba(57, 255, 20, 0.1);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.pricing-row.highlight {
    background: rgba(57, 255, 20, 0.15);
    border-left: 3px solid var(--accent-color);
    color: var(--accent-color);
}

.policy-list li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.policy-list.numbered {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.policy-list.numbered li {
    padding-left: 0.5rem;
}

/* Interactive Panel Styles */
.interactive-panel {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.card-grid::-webkit-scrollbar {
    width: 6px;
}

.card-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.card-item {
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #000;
}

.card-item img {
    width: 100%;
    display: block;
    transition: filter 0.2s, opacity 0.2s;
    min-height: 167px; /* Rough aspect ratio fallback */
    background: #222;
}

.card-item.selected img {
    filter: brightness(1.1);
}

.card-item.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: inset 0 0 15px rgba(57, 255, 20, 0.5);
    pointer-events: none;
}

.card-item:not(.selected) img {
    filter: grayscale(80%) brightness(0.5);
}

.card-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-qty {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    padding: 4px 0;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.mtg-card-preview {
    width: 250px;
    min-width: 250px;
    height: 350px;
    min-height: 350px;
    flex-shrink: 0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8), 0 0 10px rgba(57, 255, 20, 0.2);
    position: relative;
    font-family: var(--font-main);
    box-sizing: border-box;
    display: block;
    transition: background 0.3s ease;
}

/* Default frame color */
.frame-default { background: linear-gradient(135deg, #444, #222); }
.frame-white { background: linear-gradient(135deg, #f0e6d2, #dcd4b8, #e5dfc5); }
.frame-blue { background: linear-gradient(135deg, #4e80a5, #1d4d79, #0c2b4c); }
.frame-black { background: linear-gradient(135deg, #403e40, #1f1d20, #0a0a0a); }
.frame-red { background: linear-gradient(135deg, #c74c3e, #8c2419, #54110b); }
.frame-green { background: linear-gradient(135deg, #517d45, #294e1e, #132b0d); }
.frame-gold { background: linear-gradient(135deg, #d3c076, #a18b45, #635323); }
.frame-artifact { background: linear-gradient(135deg, #9da4aa, #69717a, #3f474d); }
.frame-land { background: linear-gradient(135deg, #b98e6c, #855c3c, #4f311c); }

.mtg-card-border {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: transparent;
    padding: 4px;
    box-sizing: border-box;
}

.mtg-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #e0e0e0;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.mtg-header-bar, .mtg-type-bar {
    width: 96%;
    height: 24px;
    margin: 2px auto;
    background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
    border: 1px solid #999;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    box-sizing: border-box;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 1px 3px rgba(0,0,0,0.3);
}

.mtg-name, .mtg-type, .mtg-pt, .mtg-mana {
    font-size: 0.75rem;
    font-weight: bold;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtg-mana {
    font-family: monospace;
}

.mtg-art-box {
    width: 92%;
    flex-grow: 1;
    margin: 0 auto;
    background: #333;
    border: 1px solid #666;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.mtg-art-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%; /* Default */
    transform: scale(1); /* Default */
}

.mtg-rules-box {
    width: 92%;
    height: 100px;
    margin: 2px auto 6px;
    background: linear-gradient(to bottom, #eeeeee, #dddddd);
    border: 1px solid #999;
    border-radius: 2px;
    padding: 6px;
    box-sizing: border-box;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.mtg-rules {
    font-size: 0.65rem;
    color: #222;
    line-height: 1.2;
    white-space: pre-wrap;
    overflow: hidden;
}

.mtg-pt-box {
    position: absolute;
    bottom: -2px;
    right: 0px;
    background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
    border: 1px solid #999;
    border-radius: 8px;
    padding: 2px 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Tabs UI */
.cc-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--accent-tertiary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.cc-tab-btn {
    background: rgba(0,0,0,0.4);
    border: 1px solid transparent;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
}

.cc-tab-btn:hover {
    color: var(--text-color);
    background: rgba(0,0,0,0.6);
}

.cc-tab-btn.active {
    background: var(--accent-tertiary);
    color: #000;
    border-color: var(--accent-color);
}

.cc-tab-content {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.cc-tab-content.active {
    display: flex;
}

.color-radios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.color-radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.2s;
}

.color-radio-label:hover {
    border-color: var(--accent-tertiary);
    background: rgba(255,255,255,0.05);
}

.color-radio-label input[type="radio"] {
    display: none;
}

.color-radio-label:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.2);
    color: var(--accent-color);
}

@media (max-width: 600px) {
    .custom-creator-layout {
        grid-template-columns: 1fr !important;
    }
}

/* Hero CTA Animations */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent-color); }
    50% { opacity: 0.5; box-shadow: 0 0 14px var(--accent-color); }
}

.btn-shimmer {
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    animation: shimmer-sweep 3s infinite 1.5s;
}

@keyframes shimmer-sweep {
    0% { left: -75%; }
    60%, 100% { left: 125%; }
}

/* Premium Customer Form Fields */
.customer-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

.field-label svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.premium-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.premium-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.premium-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(57, 255, 20, 0.04);
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

/* Google Places Autocomplete dropdown dark override */
.pac-container {
    background: #0f1520 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
    font-family: var(--font-main) !important;
    margin-top: 2px;
}

.pac-item {
    color: rgba(255,255,255,0.8) !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding: 0.5rem 1rem !important;
    cursor: pointer;
}

.pac-item:hover, .pac-item-selected {
    background: rgba(57, 255, 20, 0.08) !important;
}

.pac-item-query {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.pac-icon { display: none !important; }

@media (max-width: 600px) {
    .custom-creator-layout { grid-template-columns: 1fr !important; }
}

/* Phase 4: LiberProxies Dark aesthetic Overrides */
body {
    background-color: #0a0e17;
}

.fixed-background {
    background: radial-gradient(circle at center, #121826 0%, #05070a 100%);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.glass-panel {
    background: rgba(18, 24, 38, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-section {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 1.5rem;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: rgba(0,0,0,0.4);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.step-indicator.active {
    color: var(--accent-color);
}

.step-indicator.active span {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.step-line {
    height: 2px;
    flex: 1;
    background: rgba(255,255,255,0.1);
    margin: 0 1rem;
    position: relative;
    top: -12px;
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ====== ANIMATIONS ====== */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(7px); opacity: 0.9; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(250%) skewX(-15deg); }
}

.btn-shimmer {
    position: absolute;
    top: 0; left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shake-error {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
.shake-error { animation: shake-error 0.4s ease; }
