/* Main Wescoup.com Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
.container {
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
}
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.status {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
}
.date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}
a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
