/* Base styles for LLaMO application */

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

body {
    font-family: 'Oxygen', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #6c757d, #495057 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #47a59e 0%, #00a79b 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

h1, .main-content h2 {
    font-family: 'Bagel Fat One', cursive;
    font-size: 2.5em;
    margin: 20px auto;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}
.header h1 {
    font-size: 4em;
}
.main-content h2 {
    color: #00a79b;
    font-size: 2em;
    margin-bottom: 30px;
}

.mascot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 15px auto 0;
    display: block;
}

.btn {
    background: #e89346;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 

.footer {
    color: #999;
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}
.footer a {
    color: #ccc; /*#e89346;*/
}