:root {
    --bg-dark: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --accent-purple: #7f00ff;
    --accent-blue: #00bfff;
    --card-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient 8s ease infinite;
}

.status-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.status-container:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
    animation: pulse 2s infinite;
}

.status-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.status-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #ff9900, #fff0e0);
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

.social-links {
    display: none;
}

footer {
    background-color: var(--card-bg);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.footer-icon {
    color: var(--text-light);
    font-size: 1.7rem;
    transition: var(--transition);
}

.footer-icon:hover {
    color: var(--accent-purple);
}

.footer-email {
    margin-bottom: 0.2rem;
}

.footer-email a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-email a:hover {
    color: var(--accent-purple);
}

.footer-links {
    margin: 0.2rem 0 0.2rem 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1.2rem;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

/* Modal styles */
#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

#modal-close:hover {
    color: var(--accent-purple);
}

#modal-title {
    margin-bottom: 1rem;
    color: var(--text-light);
}

#modal-body {
    color: var(--text-gray);
    line-height: 1.6;
}

#modal-body a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

#modal-body a:hover {
    color: var(--accent-purple);
}

/* Animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .status-container {
        padding: 2rem;
    }

    .status-icon {
        font-size: 3rem;
    }

    .status-text h2 {
        font-size: 1.5rem;
    }

    .status-text p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .footer-social { gap: 1rem; }
    .footer-links a { margin: 0 0.5rem; }
}

.status-badge {
    display: inline-block;
    padding: 0.4em 1.5em;
    border-radius: 1.5em;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    background: transparent;
    margin: 0.5em 0;
    letter-spacing: 0.01em;
    transition: var(--transition);
}
.status-badge.in-development {
    color: #ffe066;
    border-color: #ffe066;
    background: rgba(255, 224, 102, 0.08);
}
.status-badge.coming-soon {
    color: #ff9900;
    border-color: #ff9900;
    background: rgba(255, 153, 0, 0.08);
}

a:hover, .footer-icon:hover, .footer-email a:hover, .footer-links a:hover {
    color: var(--accent-purple) !important;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    color: #222;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
    margin-top: 2rem;
    border: none;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 0, 255, 0.3);
    color: #222;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
}
.cta-button.secondary:hover {
    background: rgba(127, 0, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-purple);
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0 0.5rem 0;
    position: relative;
}
.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #ff9900 33%, #fff0e0 33%, #fff0e0 66%, #fff0e0 100%);
    z-index: 0;
    border-radius: 2px;
    transform: translateY(-50%);
}
.step {
    position: relative;
    z-index: 1;
    background: #1a1a1a;
    padding: 0.5em 1.2em;
    border-radius: 2em;
    font-weight: 600;
    font-size: 1.1rem;
    color: #a0a0a0;
    border: 2px solid #fff0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s;
    text-transform: lowercase;
    letter-spacing: 0.04em;
}
.step.done {
    color: #fff0e0;
    border-color: #fff0e0;
    opacity: 0.7;
}
.step.active {
    color: #fff;
    border-color: #ff9900;
    background: #ff9900;
    box-shadow: 0 4px 16px rgba(255,153,0,0.12);
    opacity: 1;
    animation: pulse 1.5s infinite;
}
.step:last-child {
    margin-right: 0;
}
@media (max-width: 600px) {
    .progress-steps { gap: 0.7rem; }
    .step { font-size: 0.95rem; padding: 0.4em 0.7em; }
}

.progress-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem 0 0.5rem 0;
}
.progress-dot {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #1a1a1a;
    border: 3px solid #fff0e0;
    color: #fff0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    opacity: 0.7;
}
.progress-dot.done {
    background: #fff0e0;
    color: #ff9900;
    border-color: #ff9900;
    opacity: 1;
}
.progress-dot.active {
    background: #fff0e0;
    border-color: #fff0e0;
    color: #ff9900;
    opacity: 0.6;
    box-shadow: none;
    transition: all 0.3s;
}
.progress-dot.upcoming {
    background: #1a1a1a;
    color: #fff0e0;
    border-color: #fff0e0;
    opacity: 0.4;
}
.progress-dot.activated {
    background: #fff0e0;
    border-color: #fff0e0;
    color: #ff9900;
    opacity: 1;
    box-shadow: none;
    transition: all 0.3s;
}
.progress-line {
    width: 4.5rem;
    height: 6px;
    background: #fff0e0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.progress-line-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, #ff9900 60%, #fff0e0 100%);
    border-radius: 3px;
    height: 100%;
    animation: progress-bar-fill 2.2s cubic-bezier(.4,1.6,.6,1) infinite;
}
@keyframes progress-bar-fill {
    0% { width: 0%; }
    60% { width: 100%; }
    100% { width: 100%; }
}
.progress-line.upcoming {
    background: #fff0e0;
    opacity: 0.3;
}
@media (max-width: 600px) {
    .progress-dot { width: 1.3rem; height: 1.3rem; font-size: 0.7rem; }
    .progress-line { width: 2.2rem; }
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 2.5rem 0 0.5rem 0;
    position: relative;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.timeline-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #fff0e0;
    border: 3px solid #fff0e0;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.timeline-dot.done {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #fff;
    opacity: 0.6;
    box-shadow: none;
}
.timeline-dot.active {
    background: #e0d6ff;
    border-color: #e0d6ff;
    color: var(--accent-purple);
    opacity: 0.6;
    box-shadow: none;
    transition: all 0.3s;
}
.timeline-dot.activated {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0,191,255,0.12);
    animation: pulse 1.5s infinite;
}
.timeline-dot.upcoming {
    opacity: 0.2;
}
.timeline-label {
    font-size: 0.98rem;
    color: #fff0e0;
    opacity: 0.5;
    text-transform: lowercase;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    transition: all 0.3s;
}
.timeline-label.done {
    color: var(--accent-purple);
    opacity: 0.6;
}
.timeline-label.active {
    color: #e0d6ff;
    opacity: 0.6;
    transition: all 0.3s;
}
.timeline-label.activated {
    color: var(--accent-blue);
    opacity: 1;
}
.timeline-label.upcoming {
    opacity: 0.2;
}
.timeline-line {
    flex: 1 1 80px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
    position: relative;
    margin-top: 0.7rem;
    margin-left: -2px;
    margin-right: -2px;
    min-width: 40px;
    max-width: 120px;
    overflow: hidden;
}
.timeline-line-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-purple) 60%, var(--accent-blue) 100%);
    border-radius: 2px;
    height: 100%;
    transition: width 1.2s cubic-bezier(.4,1.6,.6,1);
    z-index: 2;
}
.timeline-line.upcoming {
    background: #e0d6ff;
    opacity: 0.2;
}
.timeline-line.done {
    background: var(--accent-purple);
    opacity: 0.6;
}
@media (max-width: 600px) {
    .timeline-step { min-width: 40px; }
    .timeline-dot { width: 1rem; height: 1rem; }
    .timeline-label { font-size: 0.7rem; }
    .timeline-line { min-width: 20px; max-width: 50px; }
} 