/* ========================================
   UNDER DEVELOPMENT PAGE SPECIFIC STYLES
   Styles unique to the under development page
   ======================================== */

/* ========================================
   FLOATING ELEMENTS (Development Page)
   ======================================== */

.floating-element {
    opacity: 0.15;
    animation: floatLinear 25s infinite linear;
}

.floating-element:nth-child(1) { top: 10%; left: -5%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 30%; left: -5%; animation-delay: -8s; }
.floating-element:nth-child(3) { top: 50%; left: -5%; animation-delay: -16s; }
.floating-element:nth-child(4) { top: 70%; left: -5%; animation-delay: -4s; }
.floating-element:nth-child(5) { top: 20%; left: -5%; animation-delay: -12s; }
.floating-element:nth-child(6) { top: 60%; left: -5%; animation-delay: -20s; }

/* ========================================
   CONTENT WRAPPER (Development Page)
   ======================================== */

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

/* ========================================
   DEVELOPMENT CONTAINER
   ======================================== */

.development-container {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.9) 0%, rgba(0, 85, 119, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 50px;
    border: 2px solid rgba(41, 171, 226, 0.3);
    box-shadow: 0 20px 60px rgba(0, 123, 191, 0.4);
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 20px;
    overflow: hidden;
}

.development-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.05) 0%, transparent 70%);
    animation: ripple 10s ease-in-out infinite;
}

/* ========================================
   DEVELOPMENT CONTENT
   ======================================== */

.development-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.development-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #29abe2, #007bbf, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 10px rgba(41, 171, 226, 0.5));
    position: relative;
    z-index: 2;
}

.development-subtitle {
    font-size: 1.3rem;
    color: #b3e5fc;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.development-description {
    font-size: 1.1rem;
    color: #e1f5fe;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

.loading-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #29abe2, #007bbf);
    border-radius: 50%;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.3s; }
.loading-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes loadingPulse {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ========================================
   BACK BUTTON (Override shared styles)
   ======================================== */

.development-container .back-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #007bbf 0%, #29abe2 100%);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 2;
}

.development-container .back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.development-container .back-button:hover::before {
    left: 100%;
}

.development-container .back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(41, 171, 226, 0.6);
}

.development-container .back-button:active {
    transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE DESIGN (Development Page)
   ======================================== */

@media (max-width: 768px) {
    .development-container {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .development-title {
        font-size: 2.5rem;
    }

    .development-icon {
        font-size: 3rem;
    }

    .development-subtitle {
        font-size: 1.1rem;
    }

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

@media (max-width: 480px) {
    .development-title {
        font-size: 2rem;
    }

    .development-icon {
        font-size: 2.5rem;
    }
}