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

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: rgba(17, 24, 39, 0.7);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-glow: rgba(245, 158, 11, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Blobs */
.glow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: blob-float 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ef4444 0%, rgba(239, 68, 68, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: 5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Interactive Particle Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Main Layout */
header {
    width: 100%;
    max-width: 1200px;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
    z-index: 10;
}

.creative-card {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: card-appear 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.creative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: pulse 1.8s infinite ease-in-out;
}

.title-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Progress Container */
.progress-box {
    margin-bottom: 2.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.progress-label {
    color: var(--text-secondary);
}

.progress-percentage {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 700;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 10px;
    position: relative;
    animation: fill-progress 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progress-shimmer 2.5s infinite linear;
}

/* Interactive Upcoming Features */
.features-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-tag:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Graphic/Illustration Section */
.graphic-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.graphic-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    animation: float 6s infinite ease-in-out;
    z-index: 5;
}

.avatar-decor {
    position: absolute;
    bottom: -15px;
    right: -10px;
    width: 200px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
    animation: float 5s infinite ease-in-out alternate;
    animation-delay: 1.5s;
    z-index: 6;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.avatar-decor:hover {
    transform: scale(1.1) rotate(6deg) translateY(-5px);
}

.glow-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(245, 158, 11, 0.15);
    animation: rotate-ring 40s infinite linear;
    z-index: 3;
}

.glow-ring-inner {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.1);
    animation: rotate-ring-reverse 25s infinite linear;
    z-index: 3;
}

/* Footer Section */
footer {
    width: 100%;
    padding: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    z-index: 10;
}

.footer-divider {
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    margin: 0 auto 1.5rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-link:hover {
    color: var(--accent-orange);
}

/* Animations */
@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -70px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fill-progress {
    from {
        width: 0%;
    }
    to {
        width: 78%; /* 78% creative process */
    }
}

@keyframes progress-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ring-reverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 868px) {
    .creative-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
        gap: 2.5rem;
    }
    
    .graphic-section {
        order: -1;
    }
    
    .graphic-wrapper {
        min-height: 220px;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }
    
    .logo-wrapper {
        padding: 0.5rem 1.2rem;
    }
    
    .logo-img {
        height: 34px;
    }
    
    main {
        padding: 1rem;
    }
    
    .creative-card {
        padding: 2rem 1.5rem;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .features-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-tag {
        width: 100%;
        text-align: center;
    }
    
    .avatar-decor {
        width: 85px;
        bottom: -10px;
        right: -5px;
    }
}
