* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --boost-blue: #0033a0;
    --boost-orange: #ff6d00;
    --boost-light-blue: #005eb8;
    --text-light: #f8f9fa;
    --text-dark: #333;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --promo-green: #00c389;
    --promo-purple: #8a2be2;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Banner */
.header-banner {
    background-color: var(--promo-green);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-banner a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 0.5rem;
    cursor: pointer;
}

/* Header Styles */
header {
    background-color: var(--boost-blue);
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: var(--boost-orange);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--boost-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon,
.cart-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover,
.cart-icon:hover {
    color: var(--boost-orange);
}

.login-btn {
    background-color: var(--boost-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #e05e00;
}

/* Account Pages Container */
.account-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.account-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.account-header {
    text-align: center;
    margin-bottom: 2rem;
}

.account-logo {
    font-size: 2.5rem;
    color: var(--boost-blue);
    margin-bottom: 1rem;
}

.account-header h2 {
    color: var(--boost-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.account-header p {
    color: #666;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--boost-blue);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--boost-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 109, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.password-toggle {
    position: relative;
}

.password-toggle i {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #777;
    cursor: pointer;
}

.btn {
    background-color: var(--boost-orange);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    background-color: #e05e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--boost-blue);
    border: 2px solid var(--boost-blue);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(0, 51, 160, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer a {
    color: var(--boost-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Profile Styles */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--boost-blue) 0%, var(--boost-light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--boost-blue);
}

.profile-info p {
    color: #666;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-card {
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--boost-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.profile-section {
    margin-bottom: 2.5rem;
}

.profile-section h4 {
    color: var(--boost-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--boost-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h5 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--boost-blue);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--boost-orange);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-column ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
    cursor: pointer;
}

.social-icons a:hover {
    background-color: var(--boost-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    color: #666;
    font-weight: 600;
}

.tab.active {
    color: var(--boost-blue);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--boost-orange);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .account-container {
        max-width: 90%;
    }

    .account-card {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .profile-stats {
        flex-direction: column;
        align-items: center;
    }

    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Page Navigation */
.page-navigation {
    display: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-btn {
    background: var(--boost-blue);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    margin: 0 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

        /* New profile styles */
        .dashboard-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 992px) {
            .dashboard-container {
                grid-template-columns: 1fr 350px;
            }
        }

        .dashboard-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            padding: 0;
        }

        .profile-header {
            background: linear-gradient(135deg, var(--boost-blue) 0%, var(--boost-light-blue) 100%);
            color: white;
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            position: relative;
        }

        .stats-banner {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.15);
            margin-top: 1rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .profile-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .profile-avatar i {
            font-size: 2.5rem;
            color: white;
        }

        .profile-info h2 {
            font-size: 1.6rem;
            margin-bottom: 0.3rem;
        }

        .profile-info p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .profile-content {
            padding: 2rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-card {
            background: var(--bg-gray);
            border-radius: 10px;
            padding: 1.5rem;
            position: relative;
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card h3 {
            color: var(--boost-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .info-card h3 i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .info-content {
            margin-bottom: 1rem;
        }

        .info-content p {
            margin: 0.3rem 0;
            font-size: 0.95rem;
        }

        .info-label {
            font-weight: 600;
            color: #555;
        }

        .usage-section {
            margin-top: 2rem;
        }

        .usage-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .usage-header h3 {
            color: var(--boost-blue);
            font-size: 1.3rem;
        }

        .usage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .usage-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .usage-card:hover {
            transform: translateY(-5px);
        }

        .usage-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .usage-icon {
            width: 50px;
            height: 50px;
            background: var(--boost-light-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .usage-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--boost-blue);
        }

        .progress-container {
            background: #f0f0f0;
            border-radius: 20px;
            height: 12px;
            overflow: hidden;
            margin: 1rem 0;
        }

        .progress-bar {
            height: 100%;
            border-radius: 20px;
        }

        .progress-data {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }

        .premium-card {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            height: fit-content;
        }

        .premium-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .premium-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .premium-header p {
            opacity: 0.9;
            font-size: 1.05rem;
        }

        .premium-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            background: rgba(255, 255, 255, 0.15);
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.15);
        }

        .benefit-content h4 {
            margin-bottom: 0.3rem;
            font-size: 1.15rem;
        }

        .premium-btn {
            background: var(--boost-orange);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .premium-btn i {
            margin-right: 10px;
        }

        .premium-btn:hover {
            background: #e05e00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
        }

        .support-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .support-card h3 {
            color: var(--boost-blue);
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.4rem;
        }

        .support-options {
            display: flex;
            gap: 1rem;
        }

        .support-option {
            width: -webkit-fill-available;
            background: var(--bg-gray);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .support-option:hover {
            background: var(--boost-light-blue);
            color: white;
        }

        .support-option:hover i {
            color: white;
        }

        .support-option i {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--boost-blue);
            transition: color 0.3s;
        }

        .support-option h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .status-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--promo-green);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .summary-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .summary-stat {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .summary-stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            border-color: var(--boost-light-blue);
        }

        .summary-stat i {
            font-size: 2rem;
            color: var(--boost-blue);
            margin-bottom: 1rem;
        }

        .summary-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--boost-blue);
            margin-bottom: 0.5rem;
        }

        .summary-label {
            color: #666;
            font-weight: 500;
        }
