﻿
/*************HOME PAGE*****************/
.cd-card.cddev {
    background: linear-gradient(135deg, var(--Default-Soft), var(--White-Ghost));
    border-color: var(--Primary);
}
.cd-card.cdms {
    background: linear-gradient(135deg, var(--White-Light), var(--White));
    border-color: var(--Default);
}
.cd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
}
.cdbrand-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}
.cdcoming-soon {
    display: inline-block;
    background: var(--Info-Light);
    color: var(--Warning);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.cdfeature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--Default);
    transition: all 0.3s;
}
.cdfeature-card:hover {
    border-color: var(--Primary-Light);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.2);
}
.cdfeature-icon {
    width: 60px;
    height: 60px;
    background: var(--Default-Soft);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.cdshowcase {
    background: linear-gradient(135deg, var(--Dark), var(--Dark-Light));
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    color: white;
}
.cdcomponent-tag {
    background: rgba(255,255,255,0.1);
    border-radius: 2rem;
    padding: 0.75rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
/* Activity Log */
.activity-item {
    display: flex;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f2f5;
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-icon {
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.activity-content {
    flex: 1;
}
.activity-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1f36;
    margin-bottom: 0.25rem;
}
.activity-time {
    font-size: 0.75rem;
    color: #9ca3af;
}
/* Session Item */
.session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f2f5;
}
.session-item:last-child {
    border-bottom: none;
}
.session-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.session-icon {
    width: 40px;
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.session-details h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1f36;
    margin-bottom: 0.25rem;
}
.session-details p {
    font-size: 0.75rem;
    color: #6b7280;
}
.session-current {
    background-color: #eef2ff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #4f46e5;
}
/* Password */
.segment-wrapper {
    flex: 1;
    text-align: center;
}
.segment {
    height: 8px;
    background-color: #e8eef2;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.segment.active {
    transform: scaleY(1);
}
.segment.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: Shimmer 1.5s infinite;
}
.segment.level-0.active {
    background: linear-gradient(90deg, var(--Optional), var(--Optional-Strong));
}
.segment.level-1.active {
    background: linear-gradient(90deg, var(--Primary), var(--Primary-Strong));
}
.segment.level-2.active {
    background: linear-gradient(90deg, var(--Warning), var(--Warning-Strong));
}
.segment.level-3.active {
    background: linear-gradient(90deg, var(--Failed), var(--Failed-Strong));
}
.segment.level-4.active {
    background: linear-gradient(90deg, var(--Success), var(--Success-Strong));
}
.segment-label {
    display: block;
    font-size: 10px;
    margin-top: 6px;
    color: var(--Dark-Light);
    font-weight: 500;
}
.strength-details {
    margin-top: 12px;
    padding: 12px;
    background: var(--Default-Ghost);
    border-radius: 8px;
}
.strength-text {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.strength-text.very-weak strong {
    color: var(--Optional-Ghost);
}
.strength-text.weak strong {
    color: var(--Primary-Ghost);
}
.strength-text.medium strong {
    color: var(--Warning-Ghost);
}
.strength-text.strong strong {
    color: var(--Failed-Ghost);
}
.strength-text.very-strong strong {
    color: var(--Success-Ghost);
}
.crack-time {
    font-size: 11px;
    color: #6c757d;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}
.suggestions-container {
    margin-top: 12px;
    padding: 12px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid var(--Info);
}
.suggestions-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--Warning);
    margin-bottom: 8px;
}
.suggestions {
    margin: 0;
    padding-left: 20px;
    font-size: 12px;
    color: var(--Dark);
}
/* Version Timeline */
.version-timeline {
    position: relative;
    padding-left: 2rem;
}
.version-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #e2e8f0);
}
.version-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}
.version-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #3b82f6;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #3b82f6;
}
.version-item.major::before {
    background: #ef4444;
    box-shadow: 0 0 0 2px #ef4444;
}
.version-item.minor::before {
    background: #f59e0b;
    box-shadow: 0 0 0 2px #f59e0b;
}
.version-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.version-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}
.version-date {
    color: #64748b;
    font-size: 0.875rem;
}
/* Release Notes */
.release-section {
    margin-bottom: 1.5rem;
}
.release-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.release-list {
    list-style: none;
    padding: 0;
}
.release-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #475569;
}
.release-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
}
.release-list.feature li::before {
    background: #22c55e;
}
.release-list.fix li::before {
    background: #3b82f6;
}
.release-list.breaking li::before {
    background: #ef4444;
}
.release-list.deprecated li::before {
    background: #f59e0b;
}
.release-list.security li::before {
    background: #8b5cf6;
}
/*************Vector Page*****************/
.gallery-header {
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.clear-search {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}
.category-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s;
}
.category-item:hover {
    background: var(--Default);
}
.category-item.active {
    background: var(--Primary-Light);
    color: var(--Dark-Light);
}
.vector-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.vector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.vector-card.selected {
    border-color: var(--Primary-Soft);
    box-shadow: 0 0 0 2px rgba(25,118,210,0.2);
}
.vector-preview {
    margin-bottom: 12px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.color-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.color-control {
    display: flex;
    align-items: center;
    gap: 12px;
}
.color-control label {
    width: 70px;
    font-size: 13px;
}
.color-control select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
/*************Subscription*****************/
.su-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.su-card {
    background: rgba(var(--Primary-Light_RGBA), 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--Primary-Dark_RGBA), 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.su-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--Primary-Soft_RGBA), 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.su-card.popular {
    border: 2px solid var(--Primary-Soft);
    background: linear-gradient(135deg, rgba(var(--Primary-Soft_RGBA), 0.1), rgba(var(--Primary-Strong_RGBA), 0.05));
}
.su-popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--Warning-Soft);
    color: var(--Dark-Strong);
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}
.su-features-list {
    list-style: none;
    margin: 25px 0;
}
.su-features-list li {
    padding: 8px 0;
    color: var(--Dark-Light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.su-features-list li::before {
    content: "✓";
    color: var(--Warning-Light);
    font-weight: bold;
    font-size: 1.1rem;
}
.su-buy-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--Primary-Soft), var(--Primary-Light));
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.su-buy-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(var(--Primary-Dark_RGBA), 0.4);
}
.su-custom-result {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.2s ease;
}
.su-custom-result.highlighted {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
/*************Checkout*****************/
.co-summary {
    background: rgba(var(--Dark-Light_RGBA), 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(var(--Dark-Dark_RGBA), 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}
.co-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(var(--Dark-Dark_RGBA), 0.1);
}
.co-credit-details {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(var(--Dark-Light_RGBA), 0.05);
    border-radius: 16px;
}
.co-payment-section {
    background: rgba(var(--Dark-Light_RGBA), 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(var(--Dark-Dark_RGBA), 0.1);
}
.co-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.co-payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(var(--Dark-Light_RGBA), 0.05);
    border: 2px solid rgba(var(--Dark-Light_RGBA), 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.co-payment-method:hover {
    background: rgba(var(--Default-Light_RGBA), 0.08);
}
.co-payment-method.selected {
    border-color: rgba(var(--Primary-Strong_RGBA), 0.4);
    background: rgba(var(--Default-Light_RGBA), 0.1);
}
.co-method-radio {
    width: 20px;
}
.co-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #a0aec0;
    border-radius: 50%;
    transition: all 0.2s;
}
.co-radio-circle.selected {
    border-color: var(--Primary-Soft);
    background: var(--Primary-Light);
    box-shadow: inset 0 0 0 4px var(--Secondary-Strong);
}
.co-promo-section {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.co-promo-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(var(--Dark-Light_RGBA), 0.1);
    border: 1px solid rgba(var(--Dark-Light_RGBA), 0.2);
    border-radius: 12px;
    color: var(--Dark-Light);
}
.co-apply-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--Primary), var(--Primary-Strong));
    color: var(--Default);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}
.co-apply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.co-card-form, .co-bank-info, .co-paypal-button, .co-wallet-buttons {
    margin-top: 24px;
    padding: 20px;
    background: rgba(var(--Dark-Light_RGBA), 0.05);
    border-radius: 16px;
}
.co-form-group {
    margin-bottom: 16px;
}
.co-form-group label {
    display: block;
    color: var(--Dark-Strong);
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.co-form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(var(--Dark-Light_RGBA), 0.1);
    border: 1px solid rgba(var(--Dark-Light_RGBA), 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
}
.co-form-control:focus {
    outline: none;
    border-color: var(--Primary-Soft);
}
.co-form-row {
    display: flex;
    gap: 16px;
}
.co-card-icons {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}
.co-promo-applied {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #10b981;
}
.co-remove-promo {
    background: none;
    border: none;
    color: #10b981;
    cursor: pointer;
    font-size: 1.1rem;
}
.co-bank-header {
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}
.co-bank-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
}
.co-bank-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #cbd5e0;
}
.co-bank-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #f59e0b;
}
.co-paypal-btn {
    width: 100%;
    padding: 14px;
    background: #0070ba;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.co-wallet-buttons {
    display: flex;
    gap: 16px;
}
.co-apple-pay, .co-google-pay {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.co-apple-pay {
    background: #000;
    color: white;
}
.co-google-pay {
    background: #fff;
    color: #000;
}
.co-purchase-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.co-purchase-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.co-error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 12px;
    margin-top: 16px;
    color: #ef4444;
    text-align: center;
}
.co-payment-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.co-security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.co-security-badges span {
    font-size: 0.8rem;
    color: #a0aec0;
}
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    animation: fadeInUp 0.3s ease;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    color: white;
    margin-bottom: 16px;
}

.modal-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    text-align: left;
}

    .modal-details div {
        color: #cbd5e0;
        margin-bottom: 8px;
    }

.modal-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Elegant Corporate Navigation */
/*.navbar-nav {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    padding: 0.7rem 0;
    color: #2d3436;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: #0984e3;
        transform: translateX(-50%);
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    .nav-link:hover {
        color: #0984e3;
    }

        .nav-link:hover::after {
            width: 80%;
        }

    .nav-link:active {
        color: #0652a5;
    }*/
/* Active state */
/*.nav-link.active {
        color: #0984e3;
        font-weight: 600;
    }

        .nav-link.active::after {
            width: 80%;
        }*/
/* Add a subtle background on hover */
/*.nav-item:hover {
    transform: scale(1.05);
}*/
/* 3D Button Style */
/*.nav-item {
    list-style: none;
}

.nav-link {
    padding: 0.7rem 1.5rem;
    color: #495057;
    font-weight: 600;
    text-decoration: none;
    background: white;
    border-radius: 0.4rem;
    box-shadow: 0 4px 0 #adb5bd, 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    border: none;
    display: inline-block;
}

    .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 0 #adb5bd, 0 8px 15px rgba(0,0,0,0.1);
        color: #007bff;
    }

    .nav-link:active {
        transform: translateY(4px);
        box-shadow: 0 2px 0 #adb5bd, 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-link:focus-visible {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
*/
/* Sleek Modern Navigation with Icons */
/*.navbar-nav {
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem;
    background: white;
    border-radius: 0.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    color: #4a5568;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.6rem;
    transition: all 0.2s ease;
    position: relative;
    background: transparent;
}

    .nav-link i {
        font-size: 1.2rem;
        transition: transform 0.2s ease;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, #667eea15, #764ba215);
        color: #667eea;
    }

        .nav-link:hover i {
            transform: scale(1.1);
        }

    .nav-link:active {
        transform: scale(0.95);
    }*/
/* Active state (add class 'active' to current page) */
/*.nav-link.active {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
    }

        .nav-link.active i {
            color: white;
        }*/
/***********FallOut Items**************/
.notification-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}
.notification-item:hover {
    background: #f8fafc;
}
.notification-item.unread {
    background: #f0f3ff;
}
.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
}
.notification-item-content {
    flex: 1;
}
.notification-item-title {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}
.notification-item-message {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}
.notification-item-time {
    font-size: 0.65rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.notification-item-badge {
    background: #ef4444;
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.6rem;
}
/* Empty State */
.empty-state {
    padding: 2rem;
    text-align: center;
}
.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.empty-title {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.empty-text {
    color: #94a3b8;
    font-size: 0.75rem;
}








/***********Register**************/
.register-layout {
    padding-top: 1rem;
    max-width: 500px;
    width: 100%;
    margin: auto;
}
.role-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}
.role-option {
    border: 2px solid var(--White);
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.role-option:hover {
    border-color: var(--Primary);
    transform: translateY(-2px);
}
.role-option.selected {
    border-color: var(--Primary);
    background: var(--White-Soft);
}
.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.role-icon {
    width: 40px;
    height: 40px;
    background: var(--Primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.role-title {
    font-weight: 600;
    color: var(--Dark);
}
.role-description {
    color: var(--Default);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.role-badge {
    display: inline-block;
    background: var(--Success);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
}
.role-badge.restricted {
        background: var(--Warning);
    }
/***********Demo**************/
/* Component Grid */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.component-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}
.component-name {
    font-weight: 500;
    color: #334155;
}
.status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}
.status.complete {
        background: #22c55e;
    }
/* Code Block */
.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}
.code-block pre {
        margin: 0;
    }
/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
.feature-list li:last-child {
            border-bottom: none;
        }
.feature-list .emoji {
        font-size: 1.25rem;
    }
/* Installation Steps */
.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}
.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.step-content {
    flex: 1;
}
.step-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }
/* License Cards */
.license-card {
    background: white;
    border: 2px solid var(--Default-Soft);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.2s;
}
.license-card:hover {
    border-color: var(--Primary-Soft);
    transform: translateY(-2px);
}
.license-card.popular {
        border-color: #3b82f6;
        background: linear-gradient(135deg, #f0f9ff, white);
    }
.license-card .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0f172a;
        margin: 1rem 0;
    }
.license-card .price small {
            font-size: 1rem;
            font-weight: 400;
            color: #64748b;
        }
.license-features {
    list-style: none;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.license-features li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #334155;
    }
.license-features .check {
        color: #22c55e;
    }
.license-button {
    width: 100%;
    padding: 0.875rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}
.license-button:hover {
        background: #2563eb;
    }
.license-button.outline {
        background: transparent;
        border: 2px solid #3b82f6;
        color: #3b82f6;
    }
.license-button.outline:hover {
            background: #3b82f6;
            color: white;
        }
/* Category Sections */
.category-section {
    margin: 2rem 0;
}
.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid #3b82f6;
}















.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-info {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat {
    text-align: center;
}

    .stat .number {
        font-size: 2rem;
        font-weight: 700;
        color: #f59e0b;
    }

    .stat .label {
        font-size: 0.75rem;
        color: #8d99ae;
    }

.hero-price {
    flex: 1;
    background: rgba(18, 23, 40, 0.8);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.price-period {
    font-size: 0.8rem;
    color: #8d99ae;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #ec489a);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    }

/* Plugin Grid */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        color: #8d99ae;
        max-width: 600px;
        margin: 0 auto;
    }

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(18, 23, 40, 0.8);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #202536;
    transition: all 0.3s;
}

    .pricing-card.popular {
        border-color: #60a5fa;
        transform: scale(1.02);
        box-shadow: 0 10px 30px -10px rgba(96, 165, 250, 0.3);
    }

.popular-tag {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin: 1rem 0;
}

    .price small {
        font-size: 0.8rem;
        color: #8d99ae;
    }

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

    .pricing-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        color: #a5b4d4;
    }

    .pricing-features i {
        color: #10b981;
        margin-right: 0.5rem;
    }

.pricing-btn {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.2s;
}

    .pricing-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px -5px rgba(96, 165, 250, 0.5);
    }





/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0f172a;
}

.stat-info h4 {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stats-badge {
        width: 100%;
        justify-content: space-around;
    }
}






/* Header */
.header {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 88, 120, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.back-link {
    color: #8d99ae;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

    .back-link:hover {
        color: #60a5fa;
    }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-info {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

    .stat .number {
        font-size: 2rem;
        font-weight: 700;
        color: #ec489a;
    }

    .stat .label {
        font-size: 0.75rem;
        color: #8d99ae;
    }

.hero-price {
    flex: 1;
    background: rgba(18, 23, 40, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec489a;
}

.price-period {
    font-size: 0.8rem;
    color: #8d99ae;
}

.price-note {
    font-size: 0.7rem;
    color: #5a668a;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ec489a, #8b5cf6);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.4);
    }

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #2d3348;
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: #8d99ae;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s;
}

    .tab-btn:hover {
        color: #e4e6f0;
        background: rgba(255, 255, 255, 0.05);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, #ec489a, #8b5cf6);
        color: white;
    }



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    background: rgba(18, 23, 40, 0.8);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #202536;
    transition: all 0.2s;
}

    .service-card:hover {
        border-color: #ec489a;
        transform: translateY(-2px);
    }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-name {
    font-weight: 600;
    font-size: 1rem;
}

.service-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ec489a;
}

.service-desc {
    font-size: 0.75rem;
    color: #8d99ae;
    margin-bottom: 0.5rem;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.meta-tag {
    font-size: 0.65rem;
    background: #0d1120;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    color: #7c8ab3;
}

/* Pricing Tiers */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(18, 23, 40, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #202536;
    transition: all 0.2s;
    position: relative;
}

    .pricing-card.popular {
        border-color: #ec489a;
        transform: scale(1.02);
        box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.3);
    }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec489a, #8b5cf6);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec489a;
    margin: 0.5rem 0;
}

    .pricing-price small {
        font-size: 0.8rem;
        color: #8d99ae;
    }

.pricing-features {
    margin: 1rem 0;
    text-align: left;
}

    .pricing-features li {
        list-style: none;
        padding: 0.3rem 0;
        font-size: 0.8rem;
        color: #a5b4d4;
    }

    .pricing-features i {
        width: 20px;
        color: #10b981;
        margin-right: 0.5rem;
    }

/* Property Types */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.property-item {
    background: rgba(18, 23, 40, 0.6);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #202536;
}

.property-icon {
    width: 32px;
    height: 32px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec489a;
}

.property-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.property-info p {
    font-size: 0.7rem;
    color: #8d99ae;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(76, 88, 120, 0.2);
    margin-top: 2rem;
    color: #5a668a;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}










/***********************/
