/* Additional CSS styles - optional enhancements */
/* Most styling is already in base.html */

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .container {
        background: #2a2a3e;
        color: #e0e0e0;
    }

    h1, h2 {
        color: #667eea;
    }

    input[type="email"],
    .option {
        background: #3a3a4e;
        color: #e0e0e0;
        border-color: #5a5a6e;
    }

    .domain-card {
        background: #3a3a4e;
        border-color: #5a5a6e;
        color: #e0e0e0;
    }

    .result-box {
        background: #3a3a4e;
        border-color: #667eea;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }

    .container {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .btn {
        display: none;
    }
}
