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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.1s ease-out;
}

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

/* Construction Icon */
.icon-container {
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

.construction-icon {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Icons */
.icon-warning,
.icon-envelope,
.icon-briefcase,
.icon-arrow {
    display: inline-block;
    font-size: 1.5rem;
}

.icon-envelope {
    font-size: 1rem;
}

.icon-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideIn 0.8s ease-out 0.2s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    animation: slideIn 0.8s ease-out 0.4s both;
}

.warning-box .icon-warning {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.warning-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin: 30px 0;
    animation: slideIn 0.8s ease-out 0.6s both;
}

.contact-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.email-link {
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 8px;
}

.email-link:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-section {
    margin: 40px 0 30px;
    animation: slideIn 0.8s ease-out 0.8s both;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.portfolio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.portfolio-btn:hover .icon-arrow {
    transform: translateX(5px);
}

/* Company Info */
.company-info {
    margin-top: 25px;
    animation: fadeIn 0.8s ease-out 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.company-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.company-text strong {
    color: #667eea;
    font-weight: 600;
}

/* Progress Bar */
.progress-container {
    margin-top: 40px;
    animation: slideIn 0.8s ease-out 1s both;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    animation: progress 4s steps(4) infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    25% {
        width: 25%;
    }
    50% {
        width: 50%;
    }
    75% {
        width: 75%;
    }
    100% {
        width: 100%;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .construction-icon {
        width: 150px;
    }
    
    .warning-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .warning-text {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .portfolio-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .company-text {
        font-size: 0.95rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        top: 10px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .construction-icon {
        width: 120px;
    }
    
    .warning-text,
    .contact-text {
        font-size: 0.9rem;
    }
    
    .portfolio-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .company-text {
        font-size: 0.85rem;
    }
}
