/*
Theme Name: Free User Tools
Theme URI: http://freeusertools.com/
Author: Admin
Description: Ultra-fast, lightweight Glassmorphism custom theme for web tools.
Version: 1.0
*/

/* --- Basic Reset & Premium Dark Glass UI Variables --- */
:root {
    --bg-main: #0f172a; /* Deep premium dark blue */
    --text-main: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-color: #3b82f6; /* Trustworthy blue for buttons */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
}

/* Glassmorphism Container Class */
.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.usp-text {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
}