/* Final CTA Widget Styles */
:root {
    --fc-amber: #f3b01e;
    --fc-amber-glow: rgba(232, 119, 34, 0.4);
    --fc-transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.final-cta-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #000;
}

/* Background Layers */
.fc-bg-container {
    position: absolute;
    inset: -50px;
    /* Offset for parallax */
    z-index: 1;
}

.fc-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(1);
}

.fc-smoke-layer {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/black-linen.png');
    /* Temporary texture */
    opacity: 0.1;
    mix-blend-mode: screen;
    animation: fc-smoke-move 30s linear infinite;
}

@keyframes fc-smoke-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

.fc-particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.fc-lighting-overlay {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 70% 30%, rgba(232, 119, 34, 0.1), transparent 60%); */
    z-index: 3;
    animation: fc-light-pulse 8s ease-in-out infinite alternate;
}

@keyframes fc-light-pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.7;
    }
}

/* Container */
.fc-container {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.fc-content {
    max-width: 800px;
}

/* Typography */
.fc-title {
    font-size: 85px;
    line-height: 1;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.fc-highlight {
    font-size: 140px;
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    font-stretch: condensed;
    background: linear-gradient(to bottom, #f2c775, #bf8737);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 5px 0;
    filter: drop-shadow(0 0 15px rgba(232, 119, 34, 0.4));
}

.fc-title-line {
    width: 120px;
    height: 2px;
    background: var(--fc-amber);
    margin-bottom: 40px;
    border-radius: 2px;
}

.fc-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    margin-bottom: 50px;
    font-weight: 400;
}

.fc-description strong,
.fc-description b {
    color: var(--fc-amber);
    font-weight: 500;
}

/* Buttons */
.fc-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.fc-btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--fc-transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

/* Primary Button - Black with Amber Border and Flare */
.fc-btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid rgba(232, 119, 34, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fc-btn-primary::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, var(--fc-amber), transparent 70%);
    filter: blur(10px);
    opacity: 0.3;
    transition: var(--fc-transition);
}

.fc-btn-primary:hover {
    border-color: var(--fc-amber);
    transform: translateY(-3px);
}

.fc-btn-primary:hover::after {
    opacity: 0.8;
    bottom: -15px;
}

/* Secondary Button - Transparent with White Border */
.fc-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fc-btn-secondary .fc-btn-icon {
    color: var(--fc-amber);
    font-size: 18px;
    transition: var(--fc-transition);
}

.fc-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.fc-btn-secondary:hover .fc-btn-icon {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .fc-title {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .fc-title {
        font-size: 50px;
    }

    .fc-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}