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

body {
    background-color: #0f111a;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-container {
    width: 100%;
    max-width: 500px;
    height: 80vh;
    padding: 20px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card {
    background-color: #141724;
    border: 1px solid #1e2335;
    border-radius: 16px;       
    padding: 40px 30px;        
    height: 75vh;              
    max-height: 700px;         
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #44025e;
    margin-bottom: 20px;
    text-shadow: 0 0 8px  #00f0ff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e293b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0 auto 30px auto;
    width: fit-content;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.teaser {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

.divider {
    border: none;
    border-top: 1px solid #1e293b;
    margin: 40px 0;
}

.links-contact {
    margin-top: auto;
}

.links-contact h2 {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.action-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-github {
    background-color: #24292e;
    color: #ffffff;
}
.btn-github:hover {
    background-color: #333a42;
}

.btn-email {
    background-color: #1e293b;
    border: 1px solid #334155;
}
.btn-email:hover {
    background-color: #334155;
}
.btn-email-text {
  color: #10b981;
  text-shadow: 0 0 8px #10b981;
}

.icon {
    margin-right: 8px;
}


footer {
    position: absolute;
    bottom: 15px;
    font-size: 0.75rem;
    color: #475569;
}
