/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --bg-color: #080B10;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --primary-color: #6366F1;
    --secondary-color: #8B5CF6;
    --accent-glow: rgba(99, 102, 241, 0.15);
}

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

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

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(0,0,0,0) 70%);
    animation: float-slow 20s infinite alternate;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(0,0,0,0) 70%);
    animation: float-slow 25s infinite alternate-reverse;
}

.orb-3 {
    top: 30%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #06B6D4 0%, rgba(0,0,0,0) 70%);
    animation: float-slow 18s infinite alternate;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 8%) scale(1.1);
    }
    100% {
        transform: translate(-3%, -5%) scale(0.95);
    }
}

/* Main Container and Glass Card */
.container {
    width: 100%;
    max-width: 680px;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 56px 40px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo and Icon Styling */
.logo-area {
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    animation: pulse-glow 3s infinite;
}

.build-icon {
    font-size: 36px;
    color: #FFFFFF;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(99, 102, 241, 0.7);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    }
}

/* Typography */
.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(135deg, #A5B4FC, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 36px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 440px;
    margin-bottom: 40px;
    text-align: left;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

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

.progress-bar-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    animation: fill-animation 2s ease-out;
}

@keyframes fill-animation {
    from { width: 0%; }
    to { width: 75%; }
}

/* Notification Form */
.notify-form {
    width: 100%;
    max-width: 440px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 6px 6px 6px 20px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.input-icon {
    font-size: 18px;
    color: var(--text-secondary);
    margin-right: 14px;
}

.input-group input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    padding: 10px 0;
}

.input-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFFFFF;
    border: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(1px);
}

/* Toast Message */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50px);
    background: rgba(16, 185, 129, 0.95); /* Success green */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.toast i {
    font-size: 18px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer Style */
.footer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .card {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 32px;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 12px;
        box-shadow: none;
    }

    .input-group:focus-within {
        box-shadow: none;
    }

    .input-group .input-icon {
        display: none;
    }

    .input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 14px 16px;
    }

    .input-group input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px;
        border-radius: 12px;
    }
}
