:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: #334155;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%) !important;
    color: var(--text-primary) !important;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated background particles */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Main content */
.main-container {
    min-height: 100vh;
}

.main-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand styling */
.brand-container {
    margin-bottom: 2rem;
}

.brand-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: -2px;
}

.brand-name .ctrl {
    color: var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
}

.brand-name .alt {
    color: var(--secondary-color);
    animation: glow 2s ease-in-out infinite alternate 0.5s;
}

.brand-name .chaos {
    color: var(--accent-color);
    animation: glow 2s ease-in-out infinite alternate 1s;
}

@keyframes glow {
    from { text-shadow: 0 0 10px currentColor; }
    to { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
}

.brand-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Construction section */
.construction-section {
    padding: 2rem 0;
}

.construction-icon {
    font-size: 4rem;
    color: var(--accent-color);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.construction-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Features preview */
.features-preview {
    padding: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Contact section */
.contact-section {
    padding: 2rem 0;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Progress section */
.progress-section {
    max-width: 400px;
    margin: 0 auto;
}

.progress-label {
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.progress-text {
    color: var(--text-secondary) !important;
    font-weight: 400;
    opacity: 0.8;
}

.progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-bar-animated {
    animation: progress-shimmer 2s linear infinite;
}

@keyframes progress-shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container {
        min-height: auto;
        align-items: flex-start !important;
        padding-top: 1rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-top: 0.5rem;
    }
    
    .construction-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .construction-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .construction-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: auto;
        min-width: 160px;
    }
    
    .progress-section {
        margin: 2rem 0;
    }
    
    .social-links {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .main-container {
        min-height: auto;
        align-items: flex-start !important;
        padding-top: 0.5rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .brand-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }
    
    .construction-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .construction-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .construction-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .progress-section {
        margin: 1.5rem 0;
    }
    
    .progress-text {
        font-size: 0.85rem;
    }
    
    .timeline-section {
        margin: 1.5rem 0;
    }
    
    .timeline-item {
        margin-bottom: 1rem;
        padding-left: 25px;
    }
    
    .timeline-content h6 {
        font-size: 0.9rem;
    }
    
    .timeline-content small {
        font-size: 0.75rem;
    }
    
    /* Contact form adjustments */
    .contact-form {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .main-container {
        min-height: auto;
        align-items: flex-start !important;
        padding-top: 0.5rem;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .main-content {
        padding: 0.5rem 0;
    }
    
    .brand-name {
        font-size: 1.2rem;
        margin-top: 0.5rem;
        margin-bottom: 0.3rem;
    }
    
    .construction-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .construction-description {
        font-size: 0.8rem;
    }
    
    .construction-icon {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Loading Spinner */
/* Enhanced Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease-out;
    overflow: hidden;
    will-change: opacity;
    transform: translateZ(0); /* Hardware acceleration */
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Matrix-style background effect */
.loading-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(99, 102, 241, 0.1) 100%),
        linear-gradient(180deg, transparent 98%, rgba(236, 72, 153, 0.1) 100%);
    background-size: 50px 50px;
    animation: matrix-scroll 20s linear infinite;
    opacity: 0.3;
}

@keyframes matrix-scroll {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-50px) translateX(-50px); }
}

/* Central loading content */
.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: loading-fade-in 0.6s ease-out;
    will-change: transform, opacity;
}

@keyframes loading-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Brand area */
.loading-brand {
    margin-bottom: 2rem;
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.4),
        0 0 60px rgba(236, 72, 153, 0.2);
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(236, 72, 153, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(99, 102, 241, 0.6), 0 0 80px rgba(236, 72, 153, 0.3); }
}

.loading-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.loading-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    animation: typing 2s steps(20) infinite;
}

@keyframes typing {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* Advanced progress ring */
.loading-progress {
    margin: 2rem 0;
    position: relative;
}

.progress-ring {
    position: relative;
    display: inline-block;
}

.progress-ring-svg {
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.progress-ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 3;
    opacity: 0.3;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: progress-fill 3s ease-out infinite;
}

@keyframes progress-fill {
    0% { stroke-dashoffset: 314; }
    100% { stroke-dashoffset: 0; }
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: percentage-count 3s ease-out infinite;
}

@keyframes percentage-count {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Loading status */
.loading-status {
    margin-top: 1.5rem;
}

.status-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    animation: status-blink 1.5s ease-in-out infinite;
}

.status-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Animated geometric shapes */
.loading-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.loading-shape {
    position: absolute;
    border: 1px solid var(--border-color);
    opacity: 0.1;
}

.loading-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: shape-float-1 15s ease-in-out infinite;
}

.loading-shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    animation: shape-float-2 12s ease-in-out infinite reverse;
}

.loading-shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
    animation: shape-float-3 18s ease-in-out infinite;
}

@keyframes shape-float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    33% { transform: translateY(-20px) rotate(120deg); opacity: 0.2; }
    66% { transform: translateY(10px) rotate(240deg); opacity: 0.15; }
}

@keyframes shape-float-2 {
    0%, 100% { transform: translateX(0) rotate(45deg); opacity: 0.1; }
    50% { transform: translateX(20px) rotate(225deg); opacity: 0.2; }
}

@keyframes shape-float-3 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.15; }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.footer-content {
    color: var(--text-secondary);
}

.footer-brand h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-links h6,
.footer-social h6 {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    font-size: 0.85rem;
}

.footer-copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-status {
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: var(--success-color);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-social-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-status {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-links,
    .footer-social {
        margin-top: 2rem;
    }
}

/* Enhanced Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(99, 102, 241, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(236, 72, 153, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 45% 55%, rgba(245, 158, 11, 0.08) 0%, transparent 25%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: translate(-20px, -30px) scale(1.1); 
        filter: hue-rotate(90deg);
    }
    50% { 
        transform: translate(30px, 20px) scale(0.9); 
        filter: hue-rotate(180deg);
    }
    75% { 
        transform: translate(-10px, 40px) scale(1.05); 
        filter: hue-rotate(270deg);
    }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 20s infinite linear;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -80px;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    top: -60px;
    left: 80%;
    animation-delay: -5s;
    transform: rotate(45deg);
}

.shape:nth-child(3) {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    top: -40px;
    left: 50%;
    animation-delay: -10s;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    top: -100px;
    left: 30%;
    animation-delay: -15s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes floatShape {
    to {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
    }
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.form-control:focus + .form-label {
    color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-submit {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 1.1rem;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success/Error Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: slideInDown 0.5s ease-out;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger-color);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Micro-interactions */
.btn-primary {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.feature-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.2);
    color: var(--primary-color);
}

.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Progress Enhancement */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Timeline Styles */
.timeline-section {
    max-width: 500px;
    margin: 0 auto;
}

.timeline-label {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(78, 144, 254, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    background: var(--dark-bg);
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: var(--success-color);
    border-color: var(--success-color);
    box-shadow: 0 0 10px rgba(40, 199, 111, 0.5);
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(78, 144, 254, 0.6);
    animation: pulse 2s infinite;
}

.timeline-item.completed .timeline-content h6 {
    color: var(--success-color);
}

.timeline-item.active .timeline-content h6 {
    color: var(--primary-color);
}

.timeline-content h6 {
    margin-bottom: 2px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Server Status Styles */
.server-status {
    max-width: 400px;
    margin: 0 auto;
}

.status-label {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-indicator.loading {
    background: #6c757d;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.status-indicator.online {
    background: var(--success-color);
    box-shadow: 0 0 8px rgba(40, 199, 111, 0.5);
}

.status-indicator.offline {
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}

.status-indicator.error {
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.status-text {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Toast Styles */
.toast {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px) !important;
    color: var(--text-color) !important;
}

.toast .toast-header {
    background: transparent !important;
    border-bottom: 1px solid var(--glass-border) !important;
    color: var(--text-color) !important;
}

.toast.toast-success .toast-header {
    color: var(--success-color) !important;
}

.toast.toast-error .toast-header {
    color: #dc3545 !important;
}

.toast.toast-warning .toast-header {
    color: #ffc107 !important;
}
