/* T.R.I.P. Master Theme - Unified Version */

:root {
    --bg-dark: #0f172a;       
    --bg-card: #1e293b;       
    --accent-orange: #f59e0b; 
    --accent-blue: #3b82f6;   
    --accent-green: #10b981;  
    --text-main: #f8fafc;     
    --text-muted: #94a3b8;    
    --border-color: #334155;  
}

* { box-sizing: border-box; } 

body {
    background-image: url("../images/bgimg.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Ensures background stays put on scroll */
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

a, a:visited {
    color: var(--accent-orange);
    text-decoration: none;
}

a:hover { opacity: 0.8; }

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.header-img-wrapper {
    text-align: center;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.header-img {
    width: 100%;
    max-width: 1200px;
    border: 3px solid var(--accent-orange);
    border-radius: 1.5rem; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.2s;
}

.btn-orange { background-color: var(--accent-orange); color: #000 !important; }
.btn-orange:hover { background-color: #fbbf24; }

.btn-outline { 
    background: transparent; 
    border: 1px solid var(--border-color); 
    color: var(--text-main) !important; 
}

/* Stat Cards */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-value { font-size: 1.5rem; font-weight: 800; }

/* Progress Bar */
.progress-container {
    background: var(--bg-dark);
    height: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: var(--accent-orange);
    transition: width 0.5s ease;
}

.input-field {
    width: 100%;
    padding: 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}