:root {
    --bg-dark: #0F172A;
    --card-bg: rgba(30, 41, 59, 0.4);
    --primary: #3B82F6;
    --secondary: #8B5CF6;
    --text-white: #F1F5F9;
    --text-gray: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('profosys_background.png') no-repeat center center/cover;
    filter: blur(5px) brightness(0.6);
    z-index: -2;
    transform: scale(1.1);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Header */
.logo-container {
    margin-top: 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    color: #fff;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Progress Box */
.progress-box {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 15px var(--primary);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite linear;
}

@keyframes shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* CTA Container */
.cta-container {
    display: flex;
    justify-content: center;
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    background: rgba(255,255,255, 0.05);
    padding: 0.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    color: var(--text-gray);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #10B981;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.notification.active {
    transform: translateY(0);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards ease-out;
}

.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .notify-form input {
        background: rgba(255,255,255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 0.75rem;
    }

    .btn-primary {
        justify-content: center;
    }

    .socials {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}
