
.development-container {
    color: white;
    padding: 50px;
    background: #6f5fc6;
    max-width: fit-content;
    margin-inline: auto;
    margin-block: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}

.gear-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.gear {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotate 2s linear infinite;
}

.gear::before,
.gear::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.gear::before {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.gear::after {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.gear-inner {
    width: 60%;
    height: 60%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 1.5s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main heading */
.dev-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #a8edea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.dev-subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #f8f9fa;
}

/* Figma link */
.figma-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.05);
}

.figma-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}



.figma-icon::after {
    content: 'F';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}
/* HTML: <div class="loader"></div> */
.loader {
    width: 90px;
    height: 14px;
    box-shadow: 0 3px 0 #fff;
    position: relative;
    clip-path: inset(-40px 0 -5px)
}
.loader:before {
    content: "";
    position: absolute;
    inset: auto calc(50% - 17px) 0;
    height: 50px;
    --g:no-repeat linear-gradient(#ccc 0 0);
    background: var(--g),var(--g),var(--g),var(--g);
    background-size: 16px 14px;
    animation:
            l7-1 2s infinite linear,
            l7-2 2s infinite linear;
}
@keyframes l7-1 {
    0%,
    100%  {background-position: 0 -50px,100% -50px}
    17.5% {background-position: 0 100%,100% -50px,0 -50px,100% -50px}
    35%   {background-position: 0 100%,100% 100% ,0 -50px,100% -50px}
    52.5% {background-position: 0 100%,100% 100% ,0 calc(100% - 16px),100% -50px}
    70%,
    98%  {background-position: 0 100%,100% 100% ,0 calc(100% - 16px),100% calc(100% - 16px)}
}
@keyframes l7-2 {
    0%,70% {transform:translate(0)}
    100%  {transform:translate(200%)}
}