/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');

/* Base styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

/* Buttons */
button, .button {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

button:hover, .button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Navigation */
nav {
    background-color: #000000;
    border-bottom: 1px solid #333333;
}

nav a {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav a:hover {
    color: #ff0000;
}

/* Cards and containers */
.card, .container {
    background-color: #111111;
    border: 1px solid #333333;
}

/* Form elements */
input, textarea, select {
    background-color: #111111;
    border: 1px solid #333333;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
}

input:focus, textarea:focus, select:focus {
    border-color: #ff0000;
    outline: none;
}

/* Links */
a {
    color: #ff0000;
    text-decoration: none;
}

a:hover {
    color: #cc0000;
}

/* Flash messages */
.alert {
    background-color: #111111;
    border: 1px solid #333333;
    color: #ffffff;
}

.alert-success {
    border-color: #00ff00;
}

.alert-error {
    border-color: #ff0000;
}

/* Tables */
table {
    background-color: #111111;
    border: 1px solid #333333;
}

th {
    font-family: 'Oswald', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: #222222;
}

td {
    border-bottom: 1px solid #333333;
}

/* Custom utility classes */
.text-accent {
    color: #ff0000;
}

.bg-accent {
    background-color: #ff0000;
}

.border-accent {
    border-color: #ff0000;
}

/* Custom styles */
.container {
    max-width: 1200px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Result container styles */
#imageResult, #videoResult {
    min-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
} 