/* Shared base styles for Domainer24 Pro V2 */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BCE;
    --primary-light: rgba(108, 92, 231, 0.15);
    --secondary: #00CEC9;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --bg-color: #F8F9FE;
    --text-color: #2d3436;
    --text-muted: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #dfe6e9;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.dark-mode {
    --bg-color: #0A0B1E;
    --text-color: #f1f2f6;
    --text-muted: #a4b0be;
    --glass-bg: rgba(25, 26, 47, 0.65);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --card-bg: #1e1e2d;
    --input-bg: #1e1e2d;
    --input-border: #2f3542;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at top right, rgba(108, 92, 231, 0.08), transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 206, 201, 0.08), transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
}

/* Shared Header/Footer for inner pages (About, Privacy, etc) */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin-bottom: 30px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.header-top h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--input-border);
    color: var(--text-color);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    box-shadow: none;
}

#theme-toggle {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--input-border);
    color: var(--text-muted);
}
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .header-top h1 { font-size: 1.6rem; }
    .subtitle { font-size: 1rem; }
}
