/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d1a;
    color: #00ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 1rem;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.2em;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5em;
    color: #66ffff;
}

.description p {
    font-size: 1.1rem;
    color: #99ffff;
    max-width: 600px;
    margin: 0 auto 2em auto;
    line-height: 1.6;
}

.diagram-container {
    margin-bottom: 2em;
}

.coming-soon h2 {
    color: #00ffff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

svg text {
    font-family: 'Arial', sans-serif;
}

@media (max-width: 480px) {
    svg {
        width: 100%;
        height: auto;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description p {
        font-size: 1rem;
    }
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #0d0d1a, #0f0f2a, #1a1a40, #0d0d1a);
    background-size: 400% 400%;
    animation: backgroundShift 12s ease infinite;
    color: #00ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}