/* Modern Steel Blue Theme with High-Contrast Vibrant Orange Accent */

:root {
    --bg-img: url('../images/background.jpg');
    --body-bg: #1A1A2E;
    /* Very Dark Blue-Purple (using previous dark base) */
    --card-bg-start: #2C3E50;
    /* Dark Slate Blue */
    --card-bg-end: #223140;
    /* Slightly darker Slate Blue */
    --accent-blue: #3498DB;
    /* Primary vibrant accent color (Bright Steel Blue) */
    --accent-orange: #E67E22;
    /* Secondary vibrant accent color (Vibrant Orange/Tangerine) */
    --text: #ffffff;
    --success-color: #2ECC71;
    /* Emerald Green for success icons */
    --accent: var(--accent-blue);
    --shadow-color: rgba(52, 152, 219, 0.4);
    /* Steel Blue shadow */
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif, -apple-system;
    /* Modern, clean font */
    background: var(--body-bg);
    color: var(--text);
}

body {
    /* Dark blue gradient */
    background-image: linear-gradient(135deg, #000000, #223140);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.card {
    width: 100%;
    max-width: 440px;
    /* Increased from 400px */
    /* Dark gradient background for depth */
    background: linear-gradient(180deg, var(--card-bg-start), var(--card-bg-end));
    border-radius: 16px;
    padding: 22px;
    /* Increased from 20px */
    text-align: center;
    /* Deep shadow for pop-out effect */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px var(--shadow-color);
    backdrop-filter: blur(4px);
    border: 2px solid var(--accent-blue);
    /* Accent border (Steel Blue) */
}

.avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: -48px
}

.avatar {
    width: 110px;
    /* Increased from 100px */
    height: 110px;
    /* Increased from 100px */
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-orange);
    /* Secondary accent border (Orange) */
    box-shadow: 0 0 0 5px var(--card-bg-start), 0 0 20px var(--accent-blue);
}

.title {
    font-size: 24px;
    /* Increased from 22px */
    margin: 15px 0 10px;
    font-weight: 900;
    color: var(--accent-blue);
    /* Steel Blue color */
    text-shadow: 0 0 10px var(--shadow-color);
}

.features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    color: var(--text);
    font-size: 15px;
    /* Increased from 14px */
    line-height: 1.8;
    text-align: center;
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.features li {
    margin: 9px 0;
    padding: 9px 6px;
    font-weight: 500;
    /* Subtle glow on list items */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    margin-left: 5px;
    color: var(--success-color);
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.7);
}

.features .small-text {
    font-size: 14px;
    /* Increased from 13px */
    font-style: italic;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-btn {
    display: inline-block;
    width: 90%;
    max-width: 330px;
    /* Increased from 300px */
    padding: 15px 19px;
    /* Increased padding */
    margin: 10px 0 18px;
    border-radius: 30px;
    text-decoration: none;
    /* Gradient button for a modern look */
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    /* Steel Blue to Orange gradient */
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    /* Increased from 15px */
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Prominent shadow/glow */
    box-shadow: 0 0 10px var(--shadow-color), 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all .3s cubic-bezier(.2
}