:root {
    --primary-color: #116914;
    --accent-color: #7fdc8b;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #2c5038;
    --border-radius: 15px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-gray);
}

.navbar {
    background-color: var(--light-gray) !important;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark) !important;
    letter-spacing: -1px;
}

.navbar-brand span {
    font-weight: 300;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #555 !important;
}

.btn-login {
    background-color: var(--text-dark);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
}

.nav-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 2px rgba(0,0,0,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    color: white;
}

.nav-generation-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0fff0;
    border: 1.5px solid #cbfec7;
    border-radius: 10px;
    padding: 4px 14px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #46e551;
    line-height: 1.2;
    transition: background 0.2s;
}

.nav-generation-counter .counter-label {
    font-size: 0.65rem;
    font-weight: 400;
    color: #6b806d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-generation-counter.counter-low {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #ea580c;
}

.nav-generation-counter.counter-empty {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.hero-section {
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-section {
    padding: 3rem 0;
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    background: var(--accent-color);
    transform: scale(1.05);
    border: 3px solid var(--text-dark);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-price .currency {
    font-size: 3.2rem;
}

.pricing-period {
    font-size: 0.9rem;
    color: #666;
}

.pricing-description {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

.pricing-features li::before {
    content: ">";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-button {
    width: 100%;
    padding: 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-basic {
    background: var(--text-dark);
    color: white;
}

.btn-basic:hover {
    background: #1a252f;
    transform: scale(1.02);
}

.btn-premium {
    background: var(--text-dark);
    color: var(--accent-color);
    border: 2px solid var(--text-dark);
}

.btn-premium:hover {
    background: #1a252f;
    transform: scale(1.02);
}

.btn-vip {
    background: var(--text-dark);
    color: white;
}

.btn-vip:hover {
    background: #1a252f;
    transform: scale(1.02);
}

footer {
    background-color: var(--light-gray);
    border-top: 1px solid #ddd;
    margin-top: 4rem;
}

footer .logo-footer {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin-top: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.dashboard-card h5 {
    font-weight: 700;
    color: var(--text-dark);
}

.dashboard-card .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}
/* ===== PAGE PROFIL ===== */

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.6rem;
    color: white;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 3px rgba(0,0,0,0.12);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.profile-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.profile-plan-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.8rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.profile-card-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-gray);
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-info-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.profile-info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.profile-color-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.profile-stats-row {
    display: flex;
    gap: 1.5rem;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.profile-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.profile-stat-label {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.3rem;
    text-align: center;
}

.btn-profile-action {
    display: inline-block;
    background-color: var(--text-dark);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-profile-action:hover {
    background-color: #1a3528;
    color: white;
    transform: scale(1.02);
}