/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow: hidden;
}

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

.content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
    margin-bottom: 3rem;
}

.name {
    font-size: 3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    opacity: 0.8;
}

.main {
    margin-bottom: 3rem;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 300;
    color: #34495e;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.contact {
    padding: 1.5rem;
    background: rgba(52, 73, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(52, 73, 94, 0.1);
}

.contact-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.email {
    font-size: 1.1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(52, 152, 219, 0.1);
}

.email:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
    color: #2980b9;
}

.footer {
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, #3498db 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #e74c3c 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #2ecc71 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: float 20s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

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

.name {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.coming-soon {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.message {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.footer {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        margin: 1rem;
        padding: 1.5rem;
        max-width: none;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.1rem;
    }
    
    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .main {
        margin-bottom: 2rem;
    }
}

/* Hover Effects */
.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Additional subtle animations */
.background-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}