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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.main-title {
    font-size: 3.5rem;
    color: #f0f0f0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 900;
    letter-spacing: -2px;
}

.status-section {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
    border: 1px solid #333;
}

.status-indicator {
    margin-bottom: 30px;
    text-align: center;
}

.status-indicator.alive {
    color: #4ade80;
}

.status-indicator.dead {
    color: #f87171;
}

.status-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 10px;
}

.trump-image {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.status-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f0f0f0;
}

.last-seen {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #3a3a3a;
}

.last-seen h3 {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-seen-date {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.last-seen-details {
    color: #a0a0a0;
    font-size: 1rem;
}

.update-time {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #808080;
}

.notification-section {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
    border: 1px solid #333;
}

.notification-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.notification-subtitle {
    color: #a0a0a0;
    margin-bottom: 25px;
}

.email-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
}

#email-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    transition: border-color 0.3s;
    background: #2a2a2a;
    color: #e0e0e0;
}

#email-input:focus {
    outline: none;
    border-color: #6366f1;
}

#submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

#submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.5);
}

#submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #166534;
    color: #bbf7d0;
    border: 1px solid #22c55e;
    display: block;
}

.form-message.error {
    background: #7f1d1d;
    color: #fecaca;
    border: 1px solid #ef4444;
    display: block;
}

.privacy-note {
    font-size: 0.85rem;
    color: #808080;
    margin-top: 10px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #1f1f1f;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.stat-card h4 {
    color: #a0a0a0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #6366f1;
}

.countdown-section {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
    border: 1px solid #333;
}

.countdown-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.countdown-subtitle {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 80px;
    border: 1px solid #3a3a3a;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ef4444;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.countdown-label {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-note {
    color: #808080;
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

footer {
    text-align: center;
    color: #a0a0a0;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    color: #808080;
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .status-text {
        font-size: 1.8rem;
    }
    
    .status-icon {
        font-size: 3.5rem;
    }
    
    .trump-image {
        width: 150px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    #submit-btn {
        width: 100%;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}