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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Main Container */
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Splash Container */
.splash-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.splash-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

/* Message Box */
.message-box {
    padding: 60px 40px;
    text-align: center;
}

.message-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 40px;
    line-height: 1.2;
}

.message-body {
    margin-bottom: 40px;
}

.message-body p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.message-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.timestamp {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .message-box {
        padding: 40px 30px;
    }
    
    .message-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .message-body p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .message-box {
        padding: 30px 20px;
    }
    
    .message-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .message-body p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
} 