:root {
    --color-bg: #1a0b2e;
    --color-accent: #ffd700;
    --color-text: #ffffff;
    --color-text-muted: #b3a1cc;
    --dark: #0f051d;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle at 50% 0%, #431259 0%, transparent 70%);
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-accent {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    position: relative;
    min-height: 64px;
    padding: 0.5rem 0;
    text-align: center;
    z-index: 100;
    background: transparent;
}

.logo {
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 512px; /* Taille réelle */
    height: 128px; /* Taille réelle */
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

@media (max-width: 768px) {
    .logo-img {
        width: 320px;
    }
    .auth-tab {
        right: 5%;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 220px;
    }
    header {
        padding: 1rem 0;
    }
    .auth-tab {
        font-size: 0.8rem;
        right: 10px;
    }
}

.auth-tab {
    position: absolute;
    top: 0;
    right: 15%;
    z-index: 1000;
    background: var(--color-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
    transform: translateY(-5px);
}

.auth-tab:hover {
    transform: translateY(0);
}

.auth-tab a {
    color: #1a0b2e;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
}

.lang-switch-top {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.lang-switch a {
    color: var(--color-text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .lang-switch a {
        margin: 0 0.3rem;
        font-size: 1.2rem; /* Plus gros drapeaux sur mobile */
        padding: 0.4rem 0.6rem;
    }
}

.lang-switch a.active {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: activeLangGlow 2s infinite ease-in-out;
}

@keyframes activeLangGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: heroFloat 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.home-hero-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.home-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-hero-image::after {
    content: 'WizKado.com';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34px;
    background: var(--color-bg);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.home-hero-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

.home-hero-layout .wizard-form {
    max-width: none;
    margin: 0;
}

@media (max-width: 900px) {
    .home-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-hero-image img {
        max-width: 460px;
    }

    .home-hero-image::after {
        height: 28px;
        font-size: 0.92rem;
    }
}

/* Form Wizard & Inputs */
.wizard-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .wizard-form {
        padding: 1.2rem 0.8rem; /* Réduction du padding interne */
        border-radius: 15px;
        margin: 0 10px; /* Marge externe pour ne pas toucher les bords de l'écran */
        width: auto;
    }

    .home-hero-layout .wizard-form {
        margin: 0;
    }
}

.wizard-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%, transparent 100%);
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group > label:not(.budget-group-label) {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.form-group input:focus ~ label:not(.budget-group-label),
.form-group input:not(:placeholder-shown) ~ label:not(.budget-group-label),
.form-group textarea:focus ~ label:not(.budget-group-label),
.form-group textarea:not(:placeholder-shown) ~ label:not(.budget-group-label) {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-bg);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), 0 0 15px rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.form-group::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transition: all 0.4s ease;
    z-index: 3;
    transform: translateX(-50%);
}

.form-group:focus-within::before {
    width: 80%;
}

/* Budget Options - Super Sized Magic Style */
.budget-group-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.budget-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
    justify-content: space-between;
    width: 100%;
}

.budget-radio {
    display: none;
}

.budget-label {
    padding: 1.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1.4rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    min-width: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.budget-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    color: #fff;
}

.budget-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.7s ease;
}

.budget-label:hover::before {
    left: 100%;
}

.budget-radio:checked + .budget-label {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffcc00 100%);
    color: #1a0b2e;
    border-color: var(--color-accent);
    font-weight: 800;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    animation: budgetPulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes budgetPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

@media (max-width: 600px) {
    .budget-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .budget-label {
        padding: 10px 4px;
        font-size: 0.95rem;
        min-width: 0;
        width: 100%;
        margin: 0;
        border-radius: 50px;
    }
}

@media (max-width: 380px) {
    .budget-options {
        gap: 0.5rem;
    }
    .budget-label {
        font-size: 0.9rem;
        padding: 0.7rem 0.1rem;
    }
}

.btn-magic {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffa500 100%);
    border: none;
    border-radius: 12px;
    color: #1a0b2e;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--color-accent) !important;
    color: var(--color-text) !important;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    color: var(--color-accent) !important;
}

.btn-magic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-magic.sparking {
    animation: shakeButton 0.3s ease-in-out;
}

@keyframes shakeButton {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px) rotate(-0.5deg); }
    50% { transform: translateX(3px) rotate(0.5deg); }
    75% { transform: translateX(-2px) rotate(-0.25deg); }
}

.spark-particle {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gift-card {
    position: relative;
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeIn 0.6s ease-out forwards;
}

.gift-card:hover {
    transform: rotateY(8deg) rotateX(3deg) translateY(-12px) scale(1.03);
    border-color: var(--color-accent);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-heart {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
    color: var(--color-text-muted);
}

.btn-heart:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: #ec4899;
    transform: scale(1.2);
    color: #ec4899;
}

.gift-header {
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
    flex: 1;
}

.gift-title {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-family: var(--font-heading);
    font-weight: 800;
}

.gift-reason {
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.shop-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

@media (max-width: 480px) {
    .shop-btn {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    .gift-card {
        padding: 1.5rem;
    }
    .gift-title {
        font-size: 1.3rem;
    }
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-amazon {
    grid-column: span 2;
    background: #FFD700;
    color: #111;
}

.btn-amazon:hover { background: #F4C400; }

.btn-etsy, .btn-ebay {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-etsy:hover { background: #F56040; border-color: #F56040; color: white; }
.btn-ebay:hover { background: #0064D2; border-color: #0064D2; color: white; }

.share-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.share-icon {
    font-size: 1.4rem;
    transition: all 0.3s;
    opacity: 0.7;
}

.share-icon:hover {
    opacity: 1;
    transform: scale(1.3) rotate(5deg);
}

/* Newsletter Premium Card */
.newsletter-premium-card {
    max-width: 1000px;
    margin: 4rem auto 3rem auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-info {
    text-align: left;
}

.newsletter-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.newsletter-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-info p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.newsletter-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text);
    font-weight: 500;
}

.newsletter-features li span {
    font-size: 1.2rem;
}

.newsletter-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    width: 100%;
}

.newsletter-form-v2 input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form-v2 input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form-v2 button {
    margin-top: 0.5rem;
    padding: 1.1rem;
    width: 100%;
}

.newsletter-gdpr {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    text-align: center;
}

.newsletter-message {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.2rem;
}

.newsletter-message.success { color: var(--color-success); }
.newsletter-message.error { color: #ef4444; }

@media (max-width: 768px) {
    .newsletter-premium-card {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .newsletter-info {
        text-align: center;
    }
    .newsletter-features {
        justify-content: center;
    }
    .newsletter-info h3 {
        font-size: 1.8rem;
    }
}

footer {
    text-align: center;
    padding: 2rem 1rem 1.2rem 1rem;
    margin-top: auto;
    color: var(--color-text-muted);
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.footer-nav {
    margin-bottom: 1rem;
}

.btn-footer-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text) !important;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-footer-blog:hover {
    background: var(--color-accent);
    color: #1a0b2e !important;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--color-accent);
}

@media (min-width: 1024px) {
    .container {
        padding: 1.1rem 1rem;
    }

    .hero {
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.45rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        margin: 0 0 1.6rem 0;
        font-size: 1.08rem;
    }

    .home-hero-layout {
        gap: 1.1rem;
        margin-top: 0.7rem;
        margin-bottom: 0.35rem;
    }

    .home-hero-image img {
        max-width: 420px;
    }

    .home-hero-image::after {
        height: 28px;
        font-size: 0.92rem;
    }

    .wizard-form {
        padding: 1.5rem 1.3rem;
    }

    .form-group {
        margin-bottom: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* Blog CTA Wizard */
.blog-post-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1), inset 0 0 20px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.blog-post-cta::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

.blog-post-cta::after {
    content: '✨';
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

.blog-post-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.blog-post-cta p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-cta .btn-magic {
    max-width: 300px;
    display: inline-block;
    text-decoration: none;
    color: #1a0b2e !important;
    text-shadow: none !important;
}

.blog-post-cta .btn-magic:hover {
    color: #000 !important;
}

/* Inline CTA Blog */
.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(45, 27, 78, 0.4); /* Darker background for better contrast */
    border-left: 4px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.inline-cta-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text);
}

.inline-cta-text strong {
    color: var(--color-accent);
}

.inline-cta-btn {
    white-space: nowrap;
    padding: 0.8rem 1.2rem;
    background: var(--color-accent);
    color: #1a0b2e !important;
    text-decoration: none !important;
    font-weight: 800;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    text-shadow: none !important;
}

.inline-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    color: #000 !important;
}

@media (max-width: 600px) {
    .inline-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .inline-cta-btn {
        width: 100%;
        text-align: center;
    }
}
