@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Oswald:wght@500;700&display=swap');

:root {
    --primary: #f39c12;
    --secondary: #e67e22;
    --dark: #111;
    --darker: #050505;
    --light: #f5f5f5;
    --ice: #3498db;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Oswald', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--darker);
    color: var(--light);
    font-family: var(--font-main);
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)), url('assets/img/bg1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.admin-container {
    max-width: 1000px;
}
header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}
.logo-container {
    margin-bottom: 20px;
}
.logo-container img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
}
header h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
    line-height: 1.1;
}
header p { 
    color: #ccc; 
    font-size: 1.1rem; 
    margin-top: 10px;
}

.card {
    background: rgba(17, 17, 17, 0.85);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 14px 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.4);
    background: rgba(255,255,255,0.12);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23f39c12%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}
select.form-control option { background: var(--darker); color: #fff; }

.btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
}
.btn-ice { background: linear-gradient(45deg, #2980b9, var(--ice)); }
.btn-ice:hover { box-shadow: 0 5px 20px rgba(52, 152, 219, 0.5); }
.btn-sm { padding: 8px 15px; font-size: 1rem; width: auto; }

.result-card { text-align: center; }
.result-card h2 { 
    color: var(--ice); 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    font-family: var(--font-head); 
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}
.intro-text { font-size: 1.1rem; margin-bottom: 25px; line-height: 1.5; color: #ddd; }
.benefit-item {
    background: rgba(52, 152, 219, 0.08);
    border-left: 4px solid var(--ice);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s;
}
.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(52, 152, 219, 0.12);
}
.benefit-item h3 { color: #fff; margin-bottom: 10px; font-size: 1.3rem; font-family: var(--font-head); letter-spacing: 1px;}
.benefit-item p { color: #ccc; font-size: 1rem; margin-bottom: 15px; line-height: 1.5; }
.verse {
    font-style: italic;
    color: var(--primary);
    font-size: 0.95rem;
    border-top: 1px dashed rgba(243, 156, 18, 0.3);
    padding-top: 10px;
    font-weight: 600;
}
.warning { color: #ff6b6b; background: rgba(255, 107, 107, 0.1); padding: 15px; border-radius: 6px; margin-bottom: 20px; border-left: 4px solid #ff6b6b;}

/* Admin Table Styles */
.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9rem; }
.table th, .table td { padding: 15px; border-bottom: 1px solid #333; text-align: left; }
.table th { background: rgba(243, 156, 18, 0.1); color: var(--primary); font-family: var(--font-head); letter-spacing: 1px; font-size: 1.1rem; white-space: nowrap;}
.table tr:hover { background: rgba(255,255,255,0.05); }
.badge { padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase;}
.badge-pending { background: rgba(241, 196, 15, 0.2); color: #f1c40f; border: 1px solid #f1c40f;}
.badge-completed { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-header h2 { font-family: var(--font-head); color: var(--primary); font-size: 2rem; }

footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 0.9rem;
}
