/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content */
.content {
    padding: 60px 40px;
    text-align: center;
}

/* Icon */
.icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Site Name */
.site-name {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.info {
    background: #f7fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.info p {
    color: #2d3748;
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    margin-bottom: 30px;
}

.contact p {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7fafc;
    border-radius: 50%;
    color: #667eea;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2rem;
    }

    .message {
        font-size: 1rem;
    }

    .icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .contact a {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
