@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-white: #E3E3E3;
    --font-first-word: #815FFF;
    --purple-blur: #6D0CE4;
    --blue-blur: #4252FF;
    --background: #11111F;
    --primary-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    font-family: var(--primary-font);
    background-color: var(--background);
    color: var(--font-white);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.purple-blur {
    width: 500px;
    height: 500px;
    background: var(--purple-blur);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blue-blur {
    width: 600px;
    height: 600px;
    background: var(--blue-blur);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 40px;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    animation: pulse 3s ease-in-out infinite;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(129, 95, 255, 0.4));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--font-first-word) 0%, var(--blue-blur) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--font-white);
    opacity: 0.9;
    margin-top: -10px;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.spinner {
    width: 60px;
    height: 60px;
    animation: rotate 2s linear infinite;
}

.spinner-path {
    stroke: var(--font-first-word);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(129, 95, 255, 0.6));
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.message {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 600px;
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-icon {
    padding: 10px 20px;
    background: rgba(129, 95, 255, 0.1);
    border: 1px solid rgba(129, 95, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-icon:hover {
    background: rgba(129, 95, 255, 0.2);
    border-color: rgba(129, 95, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(129, 95, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .logo {
        width: 150px;
        height: auto;
    }
    
    .container {
        padding: 20px;
    }
    
    .blur {
        filter: blur(80px);
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .tech-stack {
        gap: 10px;
    }
    
    .tech-icon {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}
