.containerd {
    width: 1100px;
    padding-right: 14px;
    padding-left: 14px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 70vw;
    margin: 0 auto;
    width: 100%;
}


.config-btn.share {
    background: linear-gradient(135deg, rgba(60, 55, 241, 0.2), rgba(90, 84, 245, 0.2));
    border-color: rgba(60, 55, 241, 0.4);
    color: #3C37F1;
}

.config-btn.share:hover {
    background: linear-gradient(135deg, rgba(60, 55, 241, 0.3), rgba(90, 84, 245, 0.3));
    border-color: #3C37F1;
    color: white;
    box-shadow: 0 4px 15px rgba(60, 55, 241, 0.2);
}

#account {
    padding-top: 200px;
}

.profile-section {
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.profile-section:hover {
    transform: translateY(-2px);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(60, 55, 241, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar:hover img {
    border-color: #3C37F1;
    transform: scale(1.05);
}

.profile-info {
    position: relative;
}

.profile-info h2 {
    color: white;
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-info .user-tag {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3C37F1, #5A54F5);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
}



.share-profile-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(60, 55, 241, 0.08);
    border: 1px solid rgba(60, 55, 241, 0.15);
    color: rgba(60, 55, 241, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.share-profile-btn:hover {
    background: rgba(60, 55, 241, 0.15);
    border-color: rgba(60, 55, 241, 0.3);
    color: #3C37F1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(60, 55, 241, 0.15);
}

/* Statistiques utilisateur */
.user-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.form-control-modern {
    position: relative;
    margin-bottom: 30px;
}

.form-control-modern input {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control-modern input:focus {
    outline: none;
    border-bottom-color: #3C37F1;
}

.form-control-modern label {
    position: absolute;
    top: 18px;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control-modern input:focus + label,
.form-control-modern input:valid + label {
    top: -12px;
    font-size: 0.9rem;
    color: #3C37F1;
}

.admin-panel-btn {
    float: right;
    background: rgba(255, 255, 255, 0.24);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.admin-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 189, 239, 0.1);
    color: white;
    text-decoration: none;
}

.configs-section {
    margin-top: 70px;
    margin-bottom: 80px;
}

.section-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    background: linear-gradient(135deg, #3C37F1, #5A54F5);
    border-radius: 2px;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.config-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.config-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #3C37F1, #5A54F5);
}

.config-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.config-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

.config-price {
    background: rgba(60, 55, 241, 0.3);
    color: #3C37F1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.config-components {
    margin-bottom: 25px;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.component-item:last-child {
    border-bottom: none;
}

.component-icon {
    width: 28px;
    height: 28px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
}

.component-info {
    flex: 1;
}

.component-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.component-details {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.3;
}

.config-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.config-btn {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-btn-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex: none;
    padding: 0;
    border-radius: 50%;
    background: rgba(60, 55, 241, 0.15);
    border: 1px solid rgba(60, 55, 241, 0.3);
    color: #3C37F1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn-small:hover {
    background: rgba(60, 55, 241, 0.25);
    border-color: #3C37F1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 55, 241, 0.3);
}

.config-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.config-btn.primary {
    background: linear-gradient(135deg, #3C37F1, #5A54F5);
    border-color: #3C37F1;
    color: white;
}

.config-btn.primary:hover {
    background: linear-gradient(135deg, #5A54F5, #3C37F1);
    box-shadow: 0 4px 15px rgba(60, 55, 241, 0.3);
}

.empty-state {
    text-align: center;
    padding: 25px 25px;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state .icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

.empty-state h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.empty-state .cta-btn {
    background: linear-gradient(135deg, #3C37F1, #5A54F5);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.empty-state .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(60, 55, 241, 0.3);
    text-decoration: none;
    color: white;
}

@media (max-width: 1200px) {
    .configs-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

@media (max-width: 768px) {
    #account {
        padding-top: 120px;
    }

    .profile-section {
        padding: 30px;
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        align-items: center;
    }

    .profile-info {
        text-align: center;
    }

    .share-profile-btn {
        order: -1;
    }

    .profile-avatar img {
        width: 120px;
        height: 120px;
    }

    .profile-info h2 {
        font-size: 2.2rem;
    }

    .profile-info .user-tag {
        font-size: 1.1rem;
    }

    /* Responsive pour les statistiques */
    .user-stats {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.9rem;
    }

    .stat-separator {
        display: none;
    }

    .configs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .config-card {
        padding: 25px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #account {
        padding-top: 110px;
    }

    .profile-section {
        padding: 25px;
        border-radius: 18px;
    }

    .profile-info h2 {
        font-size: 1.8rem;
    }

    .profile-info .user-tag {
        font-size: 1rem;
    }

    .share-profile-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Mobile pour les statistiques */
    .user-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.85rem;
    }

    .stat-separator {
        display: none;
    }

    .config-card {
        padding: 20px;
    }

    .config-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .config-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .share-btn-small {
        align-self: center;
        margin-bottom: 8px;
    }

    .component-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}