@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #0d1117;
    /* Very dark blue, matching modern dashboards */
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.site-logo {
    max-width: 140px;
    width: 35vw;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.main-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.image-wrapper {
    width: min(90%, 65vw);
    max-width: 350px;
    max-height: 40vh;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cta-button {
    width: min(90%, 65vw);
    max-width: 350px;
    background-color: var(--accent-green);
    color: #000;
    border: none;
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 99px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 var(--accent-green-glow);
    animation: pulse 2s infinite;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #16a34a;
    box-shadow: 0 10px 25px -5px var(--accent-green-glow);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--accent-green-glow);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        gap: 2rem;
    }

    .cta-button {
        width: min(100%, 90vw);
        padding: 1rem 1rem;
        font-size: 1rem;
    }
}
/* Finalized Actions Section */
.finalized-actions {
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.5rem;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    padding-bottom: 2rem;
}

.carousel-track img {
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}
