/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: white;
    min-height: 100vh;
    background-color: black;
    background-size: 40px 40px;
    background-position: center;
    overflow-x: hidden;
    width: 100%;
}

.highlight-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(28, 117, 206, 0.375),
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Back button */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-left: 10px;
    text-decoration: none;
}

.back-btn img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
    rotate: 90deg;
}

.back-btn img:hover {
    transform: scale(2.2);
}

/* Logo */
.logo {
    margin-bottom: 3rem;
}

/* Content */
.content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Icon container */
.icon-container {
    margin-bottom: 2rem;
}

.gear-icon {
    font-size: 4rem;
    animation: spin 10s linear infinite;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #60a7fa, #23d1ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #94a3b8;
}

p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Progress bar */
.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, #60a7fa, #23d1ee);
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 30%;
    }
    100% {
        width: 0%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .gear-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .content {
        padding: 1rem;
    }
} 