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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

/* ===== LOGIN ===== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-box h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.login-box .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* ===== BUTTONS ===== */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-danger {
    background: #ff6b6b;
    color: white;
}

.btn-danger:hover {
    background: #ff5252;
}

/* ===== LURK PAGE ===== */
.lurk-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 20px;
}

.header h1 {
    color: #667eea;
    font-size: 32px;
    margin-bottom: 10px;
}

.streamer-name {
    color: #666;
    font-size: 16px;
}

/* ===== STATS BOX ===== */
.stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat .label {
    display: block;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat .value {
    display: block;
    color: #667eea;
    font-size: 28px;
    font-weight: bold;
}

/* ===== BUTTON CONTAINER ===== */
.button-container {
    margin-bottom: 30px;
}

.button-container form {
    display: flex;
}

/* ===== SCHEDULE BOX ===== */
.schedule-box {
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.schedule-box h2 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    background: white;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: #667eea;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.schedule-item .time {
    font-weight: bold;
    color: #667eea;
    font-size: 14px;
    min-width: 50px;
}

.schedule-item .name {
    flex: 1;
    margin-left: 15px;
    color: #333;
}

.schedule-item .platform {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.schedule-item .platform.twitch {
    background: #9146ff;
    color: white;
}

.schedule-item .platform.kick {
    background: #00d084;
    color: white;
}

.schedule-item .platform.youtube {
    background: #ff0000;
    color: white;
}

/* ===== MESSAGES ===== */
.success-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

.error-message {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .lurk-container,
    .login-box {
        padding: 20px;
        border-radius: 8px;
    }

    .header h1 {
        font-size: 24px;
    }

    .stats-box {
        grid-template-columns: 1fr;
    }

    .stat .value {
        font-size: 24px;
    }
}
